diff --git a/.github/pull.yml b/.github/pull.yml new file mode 100644 index 000000000000..e053ddf153e0 --- /dev/null +++ b/.github/pull.yml @@ -0,0 +1,7 @@ +# https://github.com/wei/pull#advanced-setup-with-config +version: "1" +rules: + - base: master + upstream: Azure:master + mergeMethod: rebase +label: "AutoPull" \ No newline at end of file diff --git a/Documentation/Track2TestFramework.md b/Documentation/Track2TestFramework.md new file mode 100644 index 000000000000..931dd1b7f521 --- /dev/null +++ b/Documentation/Track2TestFramework.md @@ -0,0 +1,191 @@ +# Accquring TestFramework + +To start using test framework import `sdk\core\Azure.Core\tests\TestFramework.props` into test `.csproj`: + +``` xml + + +... + +... + + + +``` + +# Sync-async tests + +The test framework provides an ability to write test using async client methods and automatically run them using sync overloads. To write sync-async client tests inherit from `ClientTestBase` class and use `InstrumentClient` method call to wrap client into a proxy class that would automatically forward async calls to their sync overloads. + +``` C# +public class ConfigurationLiveTests: ClientTestBase +{ + public ConfigurationLiveTests(bool isAsync) : base(isAsync) + { + } + + private ConfigurationClient GetClient() + { + return InstrumentClient(new ConfigurationClient(...)); + } + + public async Task DeleteSettingNotFound() + { + ConfigurationClient service = GetClient(); + + var response = await service.DeleteAsync("Setting"); + + Assert.AreEqual(204, response.Status); + response.Dispose(); + } +} +``` + +In the test explorer async tests would display as `TestClassName(true)` and sync tests as `TestClassName(false)`. + +When using sync-async tests with recorded tests two sessions files would get generated async test session would have `Async.json` suffix. + +You can disable the sync-forwarding for an individual test by applying the `[AsyncOnly]` attribute to the test method. + + +__Limitation__: all method calls/properties that are being used have to be `virtual`. + +# Recorded tests + +Test framework provides an ability to record HTTP requests and responses and replay them for offline test runs. + +To use recorded test functionality inherit from `RecordedTestBase` class and use `Recording.InstrumentClientOptions` method when creating the client instance. + + +``` C# +public class ConfigurationLiveTests: RecordedTestBase +{ + public ConfigurationLiveTests(bool isAsync) : base(isAsync) + { + } + + private ConfigurationClient GetClient() + { + return InstrumentClient( + new ConfigurationClient( + ..., + Recording.InstrumentClientOptions(new ConfigurationClientOptions()))); + } + + public async Task DeleteSettingNotFound() + { + ConfigurationClient service = GetClient(); + + var response = await service.DeleteAsync("Setting"); + + Assert.AreEqual(204, response.Status); + response.Dispose(); + } +} +``` + +By default tests are run in playback mode. To change the mode use `AZURE_TEST_MODE` environment variable and set it to one of the followind values: `Live`, `Playback`, `Record`. + +In development scenarios where it's required to change mode quickly without restarting the Visual Studio use the two-parameter constructor of `RecordedTestBase` to change the mode: + +``` C# +public class ConfigurationLiveTests: RecordedTestBase +{ + public ConfigurationLiveTests(bool isAsync) : base(isAsync, RecordedTestMode.Record) + { + } +} +``` + +## Recording + +When tests are run in recording mode session records are being saved to `artifacts/bin///SessionRecords` directory. You can copy recordings to the project directory manually or by executing `dotnet msbuild /t:UpdateSessionRecords` in the test project directory. + +__NOTE:__ recordings are copied from `netcoreapp2.1` directory by default, make sure you are running the right target framework. + +## Sanitizing + +Secrets that are part of requests, responses, headers or connections strings should be sanitized before saving the record. Common headers like `Authentication` are sanitized automatically but if custom logic is required `RecordedTest.Sanitizer` should be used as extension point. + +For example: + +``` C# + public class ConfigurationRecordedTestSanitizer : RecordedTestSanitizer + { + public override void SanitizeConnectionString(ConnectionString connectionString) + { + const string secretKey = "secret"; + + if (connectionString.Pairs.ContainsKey(secretKey)) + { + connectionString.Pairs[secretKey] = ""; + } + } + } + + public class ConfigurationLiveTests: RecordedTestBase + { + public ConfigurationLiveTests(bool isAsync) : base(isAsync) + { + Sanitizer = new ConfigurationRecordedTestSanitizer(); + } + } +``` + +## Matching + +When tests are ran in replay mode HTTP method, uri and headers are used to match request to response. Some headers change on every request and are not controlled by the client code and should be ignored during the matching. Common headers like `Date`, `x-ms-date`, `x-ms-client-request-id`, `User-Agent`, `Request-Id` are ignored by default but if more headers need to be ignored use `Recording.Matcher` extensions point. + + +``` C# + public class ConfigurationRecordMatcher : RecordMatcher + { + public ConfigurationRecordMatcher(RecordedTestSanitizer sanitizer) : base(sanitizer) + { + ExcludeHeaders.Add("Sync-Token"); + } + } + + public class ConfigurationLiveTests: RecordedTestBase + { + public ConfigurationLiveTests(bool isAsync) : base(isAsync) + { + Sanitizer = new ConfigurationRecordedTestSanitizer(); + Matcher = new ConfigurationRecordMatcher(Sanitizer); + } + } +``` +## TokenCredential + +If test uses `TokenCredential` to construct the client use `Recording.GetCredential(...)` to wrap it: + +``` C# + public abstract class KeysTestBase : RecordedTestBase + { + internal KeyClient GetClient() + { + return InstrumentClient + (new KeyClient( + new Uri(recording.GetVariableFromEnvironment(AzureKeyVaultUrlEnvironmentVariable)), +/* --------> */ recording.GetCredential(new DefaultAzureCredential()), + recording.InstrumentClientOptions(new KeyClientOptions()))); + } + } + +``` + +## Misc + +You can use `Recording.GenerateId()` to generate repeatable random IDs. + +You should only use `Recording.Random` for random values (and you MUST make the same number of random calls in the same order every test run) + +You can use `Recording.Now` and `Recording.UtcNow` if you need certain values to capture the time the test was recorded + +It's possible to add additional recording variables for advanced scenarios (like custom test configuration, etc.) but using `Recording.GetVariableFromEnvironment`, `Recording.GetVariable` or `Recording.GetConnectionStringFromEnvironment`. + +You can use `if (Mode == RecordingMode.Playback) { ... }` to change behavior for playback only scenarios (in particular to make polling times instantaneous) + +You can use `using (Recording.DisableRecording()) { ... }` to disable recording in the code block (useful for polling methods) + + diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 89694924ebd6..33cd3921e9ca 100755 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -53,7 +53,7 @@ - + diff --git a/src/SDKs/_metadata/apimanagement_resource-manager.txt b/eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt similarity index 100% rename from src/SDKs/_metadata/apimanagement_resource-manager.txt rename to eng/mgmt/mgmtmetadata/apimanagement_resource-manager.txt diff --git a/eng/mgmt/mgmtmetadata/batch_resource-manager.txt b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt new file mode 100644 index 000000000000..4126a845ab68 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: latest +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/batch/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\work\github\azure-sdk-for-net\sdk +2019-08-07 15:41:13 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: ad759850354ddb7b4ffea0a49b70243fd9ec5a42 +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt index 560c440bddbe..fab42c569bf1 100644 --- a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/compute_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/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\hylee-sdk\july2\sdk -2019-07-18 00:16:54 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=G:\Code\azure-sdk-for-net\sdk +2019-08-02 00:21:49 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 6b6a445819212313e466b2f77f8b3e6d4f9d18fb +Commit: ab88105b1fd4d8b982869c43b1fbf365f24fc0af AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283 diff --git a/eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt b/eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt index cd7694ff45c8..205833c6e8d3 100644 --- a/eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/datafactory_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/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Git\AdmsSdkChange\sdk -2019-08-07 01:45:14 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=C:\Users\xiaoyz\Source\Repos\azure-sdk-for-net-wenbo\sdk +2019-08-07 02:33:49 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 694f153a2f2eb22fdab6035ba9dc9eaaf375a386 +Commit: f80a6c182c85879a415d4c668473c592147416f3 AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283 diff --git a/eng/mgmt/mgmtmetadata/search_data-plane_Microsoft.Azure.Search.Service.txt b/eng/mgmt/mgmtmetadata/search_data-plane_Microsoft.Azure.Search.Service.txt index 66accf64b1ae..38e9eeabaddc 100644 --- a/eng/mgmt/mgmtmetadata/search_data-plane_Microsoft.Azure.Search.Service.txt +++ b/eng/mgmt/mgmtmetadata/search_data-plane_Microsoft.Azure.Search.Service.txt @@ -4,11 +4,11 @@ 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/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\src\azure-sdk-for-net\sdk -2019-08-01 17:40:34 UTC +2019-08-08 17:18:20 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 39c47bb0623a056d760175c63688d688e0020faa +Commit: 397e41997764b35729dd4f39ec80a0f98c4456eb AutoRest information Requested version: latest Bootstrapper version: autorest@2.0.4283 diff --git a/samples/SmokeTest/SmokeTest/BlobStorageTest.cs b/samples/SmokeTest/SmokeTest/BlobStorageTest.cs index e9bb58522673..e3e87f82d8f2 100644 --- a/samples/SmokeTest/SmokeTest/BlobStorageTest.cs +++ b/samples/SmokeTest/SmokeTest/BlobStorageTest.cs @@ -1,4 +1,8 @@ -using Azure.Storage.Blobs; +// ------------------------------------ +// Copyright(c) Microsoft Corporation. +// Licensed under the MIT License. +// ------------------------------------ +using Azure.Storage.Blobs; using System; using System.IO; using System.Runtime.CompilerServices; @@ -27,7 +31,7 @@ public static async Task RunTests() string connectionString = Environment.GetEnvironmentVariable("BLOB_CONNECTION_STRING"); string containerName = "mycontainer"; //The container must exists, this sample is not creating it. - string blobName = "netSmokeTestBlob"; + string blobName = $"netSmokeTestBlob-{Guid.NewGuid()}.txt"; serviceClient = new BlobServiceClient(connectionString); blobClient = serviceClient.GetBlobContainerClient(containerName).GetBlockBlobClient(blobName); diff --git a/samples/SmokeTest/SmokeTest/CosmosDBTest.cs b/samples/SmokeTest/SmokeTest/CosmosDBTest.cs index 890b63c376be..c2376455d2a1 100644 --- a/samples/SmokeTest/SmokeTest/CosmosDBTest.cs +++ b/samples/SmokeTest/SmokeTest/CosmosDBTest.cs @@ -1,4 +1,8 @@ -using Azure.Storage.Blobs.Models; +// ------------------------------------ +// Copyright(c) Microsoft Corporation. +// Licensed under the MIT License. +// ------------------------------------ +using Azure.Storage.Blobs.Models; using Microsoft.Azure.Documents; using Microsoft.Azure.Documents.Client; using Newtonsoft.Json; @@ -34,7 +38,7 @@ public class Moon class CosmosDBTest { private static DocumentClient client; - private const string DataBaseName = "netSolarSystemDB"; + private static string DataBaseName = $"netSolarSystemDB-{Guid.NewGuid()}"; private const string CollectionName = "PlanetsCollection"; private static List planets = new List(); diff --git a/samples/SmokeTest/SmokeTest/EventHubsTest.cs b/samples/SmokeTest/SmokeTest/EventHubsTest.cs index 115398337a70..dd90b776d245 100644 --- a/samples/SmokeTest/SmokeTest/EventHubsTest.cs +++ b/samples/SmokeTest/SmokeTest/EventHubsTest.cs @@ -1,4 +1,8 @@ -using Azure; +// ------------------------------------ +// Copyright(c) Microsoft Corporation. +// Licensed under the MIT License. +// ------------------------------------ +using Azure; using Azure.Messaging.EventHubs; using Microsoft.Azure.Amqp.Framing; using System; @@ -79,35 +83,16 @@ private static async Task SendAndReceiveEvents() { receivedEvents.AddRange(await receiver.ReceiveAsync(eventBatch.Length + 10, TimeSpan.FromMilliseconds(25))); } - index = 0; - //Check if at least one event was received in order to start validation if (receivedEvents.Count == 0) { throw new Exception(String.Format("Error, No events received.")); } Console.Write(receivedEvents.Count() + " events received.\n"); - Console.WriteLine("Beginning validation..."); - foreach (var receivedEvent in receivedEvents) + if (receivedEvents.Count() < eventBatch.Count()) { - var receivedEventMessage = Encoding.UTF8.GetString(receivedEvent.Body.ToArray()); - var sentEventMessage = Encoding.UTF8.GetString(eventBatch[index].Body.ToArray()); - - if (receivedEventMessage == sentEventMessage) - { - Console.WriteLine("\tEvent '" + receivedEventMessage + "' correctly validated."); - } - else - { - throw new Exception(String.Format("Error, Event: '" + receivedEventMessage + "' was not expected.")); - } - index++; - } - - if (index < eventBatch.Count()) - { - throw new Exception(String.Format("Error, expecting " + eventBatch.Count().ToString() + " events, but only got " + index.ToString() + ".")); + throw new Exception(String.Format($"Error, expecting {eventBatch.Count()} events, but only got {receivedEvents.Count().ToString()}.")); } Console.WriteLine("done"); diff --git a/samples/SmokeTest/SmokeTest/KeyVaultTest.cs b/samples/SmokeTest/SmokeTest/KeyVaultTest.cs index 824e85423d00..e227443873fd 100644 --- a/samples/SmokeTest/SmokeTest/KeyVaultTest.cs +++ b/samples/SmokeTest/SmokeTest/KeyVaultTest.cs @@ -1,4 +1,8 @@ -using Azure.Identity; +// ------------------------------------ +// Copyright(c) Microsoft Corporation. +// Licensed under the MIT License. +// ------------------------------------ +using Azure.Identity; using Azure.Security.KeyVault.Secrets; using System; using System.Threading.Tasks; @@ -7,7 +11,7 @@ namespace SmokeTest { class KeyVaultTest { - private const string SecretName = "SmokeTestSecret"; + private static string SecretName = $"SmokeTestSecret-{Guid.NewGuid()}"; private const string SecretValue = "smokeTestValue"; private static SecretClient client; diff --git a/samples/SmokeTest/SmokeTest/Program.cs b/samples/SmokeTest/SmokeTest/Program.cs index 9663c6fd9058..1be82b7a8589 100644 --- a/samples/SmokeTest/SmokeTest/Program.cs +++ b/samples/SmokeTest/SmokeTest/Program.cs @@ -1,4 +1,9 @@ -using Azure.Messaging.EventHubs; +// ------------------------------------ +// Copyright(c) Microsoft Corporation. +// Licensed under the MIT License. +// ------------------------------------ +// ------------------------------------ +using Azure.Messaging.EventHubs; using System; using System.Reflection.Metadata; using System.Threading.Tasks; diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/changelog.md b/sdk/batch/Microsoft.Azure.Management.Batch/changelog.md index e8d7c0c8f5cd..d637645d82a4 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/changelog.md +++ b/sdk/batch/Microsoft.Azure.Management.Batch/changelog.md @@ -1,5 +1,17 @@ ## Microsoft.Azure.Management.Batch release notes +### Changes in 9.0.0 +#### REST API version +- This version targets REST API version 2019-08-01. + +#### Features +- Added ability to specify a collection of public IPs on `NetworkConfiguration` via the new `PublicIPs` property. This guarantees nodes in the Pool will have an + IP from the list user provided IPs. +- Added ability to mount remote file-systems on each node of a pool via the `MountConfiguration` property on `Pool`. +- Shared Image Gallery images can now be specified on the `VirtualMachineImageId` property of `ImageReference` by referencing the image via its ARM ID. +- **[Breaking]** When not specified, the default value for `WaitForSuccess` on `StartTask` is now `true` (was `false`). +- **[Breaking]** When not specified, the default value for `Scope` on `AutoUserSpecification` is now always `Pool` (was `Task` on Windows nodes, `Pool` on Linux nodes). + ### Changes in 8.0.0 #### REST API version - This version targets REST API version 2019-04-01. @@ -8,7 +20,6 @@ - Added BatchAccount properties `DedicatedCoreQuotaPerVMFamily` and `DedicatedCoreQuotaPerVMFamilyEnforced` to facilitate the transition to per VM family quota - **[Breaking]** Accounts created with `PoolAllocationMode` set to `UserSubscription` will not return core quota properties `DedicatedCoreQuota` or `LowPriorityCoreQuota` - ### Changes in 7.0.0 #### REST API version - This version targets REST API version 2018-12-01. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs index bcfc78ece656..f1ff71a80f27 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs @@ -356,7 +356,7 @@ private void Initialize() Certificate = new CertificateOperations(this); Pool = new PoolOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2019-04-01"; + ApiVersion = "2019-08-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoUserSpecification.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoUserSpecification.cs index a73ba6b44c62..3afa4a6eb5e0 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoUserSpecification.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoUserSpecification.cs @@ -49,7 +49,13 @@ public AutoUserSpecification() /// Gets or sets the scope for the auto user /// /// - /// The default value is task. Possible values include: 'Task', 'Pool' + /// The default value is Pool. If the pool is running Windows a value + /// of Task should be specified if stricter isolation between tasks is + /// required. For example, if the task mutates the registry in a way + /// which could impact other tasks, or if certificates have been + /// specified on the pool which should not be accessible by normal + /// tasks but should be accessible by start tasks. Possible values + /// include: 'Task', 'Pool' /// [JsonProperty(PropertyName = "scope")] public AutoUserScope? Scope { get; set; } @@ -58,10 +64,8 @@ public AutoUserSpecification() /// Gets or sets the elevation level of the auto user. /// /// - /// nonAdmin - The auto user is a standard user without elevated - /// access. admin - The auto user is a user with elevated access and - /// operates with full Administrator permissions. The default value is - /// nonAdmin. Possible values include: 'NonAdmin', 'Admin' + /// The default value is nonAdmin. Possible values include: 'NonAdmin', + /// 'Admin' /// [JsonProperty(PropertyName = "elevationLevel")] public ElevationLevel? ElevationLevel { get; set; } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs new file mode 100644 index 000000000000..691b1a05cf31 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs @@ -0,0 +1,138 @@ +// +// 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.Batch.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information used to connect to an Azure Storage Container using + /// Blobfuse. + /// + public partial class AzureBlobFileSystemConfiguration + { + /// + /// Initializes a new instance of the AzureBlobFileSystemConfiguration + /// class. + /// + public AzureBlobFileSystemConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureBlobFileSystemConfiguration + /// 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 Azure Storage Account key. + /// The Azure Storage SAS token. + /// Additional command line options to + /// pass to the mount command. + public AzureBlobFileSystemConfiguration(string accountName, string containerName, string relativeMountPath, string accountKey = default(string), string sasKey = default(string), string blobfuseOptions = default(string)) + { + AccountName = accountName; + ContainerName = containerName; + AccountKey = accountKey; + SasKey = sasKey; + BlobfuseOptions = blobfuseOptions; + RelativeMountPath = relativeMountPath; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Azure Storage Account name. + /// + [JsonProperty(PropertyName = "accountName")] + public string AccountName { get; set; } + + /// + /// Gets or sets the Azure Blob Storage Container name. + /// + [JsonProperty(PropertyName = "containerName")] + public string ContainerName { get; set; } + + /// + /// Gets or sets the Azure Storage Account key. + /// + /// + /// This property is mutually exclusive with sasKey and one must be + /// specified. + /// + [JsonProperty(PropertyName = "accountKey")] + public string AccountKey { get; set; } + + /// + /// Gets or sets the Azure Storage SAS token. + /// + /// + /// This property is mutually exclusive with accountKey and one must be + /// specified. + /// + [JsonProperty(PropertyName = "sasKey")] + public string SasKey { get; set; } + + /// + /// Gets or sets additional command line options to pass to the mount + /// command. + /// + /// + /// These are 'net use' options in Windows and 'mount' options in + /// Linux. + /// + [JsonProperty(PropertyName = "blobfuseOptions")] + public string BlobfuseOptions { get; set; } + + /// + /// Gets or sets the relative path on the compute node where the file + /// system will be mounted + /// + /// + /// All file systems are mounted relative to the Batch mounts + /// directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment + /// variable. + /// + [JsonProperty(PropertyName = "relativeMountPath")] + public string RelativeMountPath { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccountName"); + } + if (ContainerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ContainerName"); + } + if (RelativeMountPath == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RelativeMountPath"); + } + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureFileShareConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureFileShareConfiguration.cs new file mode 100644 index 000000000000..54a1eb044cc8 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureFileShareConfiguration.cs @@ -0,0 +1,127 @@ +// +// 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.Batch.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information used to connect to an Azure Fileshare. + /// + public partial class AzureFileShareConfiguration + { + /// + /// Initializes a new instance of the AzureFileShareConfiguration + /// class. + /// + public AzureFileShareConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureFileShareConfiguration + /// class. + /// + /// The Azure Storage account name. + /// The Azure Files URL. + /// The Azure Storage account key. + /// The relative path on the compute + /// node where the file system will be mounted + /// Additional command line options to pass + /// to the mount command. + public AzureFileShareConfiguration(string accountName, string azureFileUrl, string accountKey, string relativeMountPath, string mountOptions = default(string)) + { + AccountName = accountName; + AzureFileUrl = azureFileUrl; + AccountKey = accountKey; + RelativeMountPath = relativeMountPath; + MountOptions = mountOptions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Azure Storage account name. + /// + [JsonProperty(PropertyName = "accountName")] + public string AccountName { get; set; } + + /// + /// Gets or sets the Azure Files URL. + /// + /// + /// This is of the form 'https://{account}.file.core.windows.net/'. + /// + [JsonProperty(PropertyName = "azureFileUrl")] + public string AzureFileUrl { get; set; } + + /// + /// Gets or sets the Azure Storage account key. + /// + [JsonProperty(PropertyName = "accountKey")] + public string AccountKey { get; set; } + + /// + /// Gets or sets the relative path on the compute node where the file + /// system will be mounted + /// + /// + /// All file systems are mounted relative to the Batch mounts + /// directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment + /// variable. + /// + [JsonProperty(PropertyName = "relativeMountPath")] + public string RelativeMountPath { get; set; } + + /// + /// Gets or sets additional command line options to pass to the mount + /// command. + /// + /// + /// These are 'net use' options in Windows and 'mount' options in + /// Linux. + /// + [JsonProperty(PropertyName = "mountOptions")] + public string MountOptions { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccountName"); + } + if (AzureFileUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AzureFileUrl"); + } + if (AccountKey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccountKey"); + } + if (RelativeMountPath == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RelativeMountPath"); + } + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CIFSMountConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CIFSMountConfiguration.cs new file mode 100644 index 000000000000..1effcf83cd3e --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CIFSMountConfiguration.cs @@ -0,0 +1,126 @@ +// +// 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.Batch.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information used to connect to a CIFS file system. + /// + public partial class CIFSMountConfiguration + { + /// + /// Initializes a new instance of the CIFSMountConfiguration class. + /// + public CIFSMountConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CIFSMountConfiguration class. + /// + /// The user to use for authentication against + /// the CIFS file system. + /// The URI of the file system to mount. + /// The relative path on the compute + /// node where the file system will be mounted + /// The password to use for authentication + /// against the CIFS file system. + /// Additional command line options to pass + /// to the mount command. + public CIFSMountConfiguration(string username, string source, string relativeMountPath, string password, string mountOptions = default(string)) + { + Username = username; + Source = source; + RelativeMountPath = relativeMountPath; + MountOptions = mountOptions; + Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the user to use for authentication against the CIFS + /// file system. + /// + [JsonProperty(PropertyName = "username")] + public string Username { get; set; } + + /// + /// Gets or sets the URI of the file system to mount. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + /// + /// Gets or sets the relative path on the compute node where the file + /// system will be mounted + /// + /// + /// All file systems are mounted relative to the Batch mounts + /// directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment + /// variable. + /// + [JsonProperty(PropertyName = "relativeMountPath")] + public string RelativeMountPath { get; set; } + + /// + /// Gets or sets additional command line options to pass to the mount + /// command. + /// + /// + /// These are 'net use' options in Windows and 'mount' options in + /// Linux. + /// + [JsonProperty(PropertyName = "mountOptions")] + public string MountOptions { get; set; } + + /// + /// Gets or sets the password to use for authentication against the + /// CIFS file system. + /// + [JsonProperty(PropertyName = "password")] + public string Password { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Username == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Username"); + } + if (Source == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Source"); + } + if (RelativeMountPath == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RelativeMountPath"); + } + if (Password == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Password"); + } + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateVisibility.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateVisibility.cs index 9d845509b943..0c812c7a8716 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateVisibility.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateVisibility.cs @@ -23,7 +23,9 @@ public enum CertificateVisibility { /// /// The certificate should be visible to the user account under which - /// the start task is run. + /// the start task is run. Note that if AutoUser Scope is Pool for both + /// the StartTask and a Task, this certificate will be visible to the + /// Task as well. /// [EnumMember(Value = "StartTask")] StartTask, diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerWorkingDirectory.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerWorkingDirectory.cs new file mode 100644 index 000000000000..2fe152e37088 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerWorkingDirectory.cs @@ -0,0 +1,68 @@ +// +// 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.Batch.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ContainerWorkingDirectory. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ContainerWorkingDirectory + { + /// + /// Use the standard Batch service task working directory, which will + /// contain the Task resource files populated by Batch. + /// + [EnumMember(Value = "TaskWorkingDirectory")] + TaskWorkingDirectory, + /// + /// Using container image defined working directory. Beware that this + /// directory will not contain the resource files downloaded by Batch. + /// + [EnumMember(Value = "ContainerImageDefault")] + ContainerImageDefault + } + internal static class ContainerWorkingDirectoryEnumExtension + { + internal static string ToSerializedValue(this ContainerWorkingDirectory? value) + { + return value == null ? null : ((ContainerWorkingDirectory)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ContainerWorkingDirectory value) + { + switch( value ) + { + case ContainerWorkingDirectory.TaskWorkingDirectory: + return "TaskWorkingDirectory"; + case ContainerWorkingDirectory.ContainerImageDefault: + return "ContainerImageDefault"; + } + return null; + } + + internal static ContainerWorkingDirectory? ParseContainerWorkingDirectory(this string value) + { + switch( value ) + { + case "TaskWorkingDirectory": + return ContainerWorkingDirectory.TaskWorkingDirectory; + case "ContainerImageDefault": + return ContainerWorkingDirectory.ContainerImageDefault; + } + return null; + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs index 040ff57bcddd..0967f85e4404 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs @@ -14,8 +14,9 @@ namespace Microsoft.Azure.Management.Batch.Models using System.Linq; /// - /// Data Disk settings which will be used by the data disks associated to - /// Compute Nodes in the pool. + /// Settings which will be used by the data disks associated to Compute + /// Nodes in the Pool. When using attached data disks, you need to mount + /// and format the disks from within a VM to use them. /// public partial class DataDisk { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ImageReference.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ImageReference.cs index 29ae893f00a9..83058e17abb8 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ImageReference.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ImageReference.cs @@ -40,10 +40,13 @@ public ImageReference() /// image. /// The version of the Azure Virtual Machines /// Marketplace image. - /// The ARM resource identifier of the virtual machine - /// image. Computes nodes of the pool will be created using this custom - /// image. This is of the form - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName} + /// The ARM resource identifier of the Virtual Machine + /// Image or Shared Image Gallery Image. Compute Nodes of the Pool will + /// be created using this Image Id. This is of either the form + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName} + /// for Virtual Machine Image or + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId} + /// for SIG image. public ImageReference(string publisher = default(string), string offer = default(string), string sku = default(string), string version = default(string), string id = default(string)) { Publisher = publisher; @@ -84,7 +87,7 @@ public ImageReference() /// image. /// /// - /// For example, 14.04.0-LTS or 2012-R2-Datacenter. + /// For example, 18.04-LTS or 2019-Datacenter. /// [JsonProperty(PropertyName = "sku")] public string Sku { get; set; } @@ -101,18 +104,22 @@ public ImageReference() public string Version { get; set; } /// - /// Gets or sets the ARM resource identifier of the virtual machine - /// image. Computes nodes of the pool will be created using this custom - /// image. This is of the form + /// Gets or sets the ARM resource identifier of the Virtual Machine + /// Image or Shared Image Gallery Image. Compute Nodes of the Pool will + /// be created using this Image Id. This is of either the form /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName} + /// for Virtual Machine Image or + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId} + /// for SIG image. /// /// - /// This property is mutually exclusive with other properties. The - /// virtual machine image must be in the same region and subscription - /// as the Azure Batch account. For information about the firewall - /// settings for Batch node agent to communicate with Batch service see - /// https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration - /// . + /// This property is mutually exclusive with other properties. For + /// Virtual Machine Image it must be in the same region and + /// subscription as the Azure Batch account. For SIG image it must have + /// replicas in the same region as the Azure Batch account. For + /// information about the firewall settings for the Batch node agent to + /// communicate with the Batch service see + /// https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/MountConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/MountConfiguration.cs new file mode 100644 index 000000000000..aa096fee6530 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/MountConfiguration.cs @@ -0,0 +1,117 @@ +// +// 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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The file system to mount on each node. + /// + public partial class MountConfiguration + { + /// + /// Initializes a new instance of the MountConfiguration class. + /// + public MountConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the MountConfiguration class. + /// + /// The Azure Storage + /// Container to mount using blob FUSE on each node. + /// The NFS file system to mount on + /// each node. + /// The CIFS/SMB file system to + /// mount on each node. + /// The Azure File Share to + /// mount on each node. + public MountConfiguration(AzureBlobFileSystemConfiguration azureBlobFileSystemConfiguration = default(AzureBlobFileSystemConfiguration), NFSMountConfiguration nfsMountConfiguration = default(NFSMountConfiguration), CIFSMountConfiguration cifsMountConfiguration = default(CIFSMountConfiguration), AzureFileShareConfiguration azureFileShareConfiguration = default(AzureFileShareConfiguration)) + { + AzureBlobFileSystemConfiguration = azureBlobFileSystemConfiguration; + NfsMountConfiguration = nfsMountConfiguration; + CifsMountConfiguration = cifsMountConfiguration; + AzureFileShareConfiguration = azureFileShareConfiguration; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Azure Storage Container to mount using blob FUSE + /// on each node. + /// + /// + /// This property is mutually exclusive with all other properties. + /// + [JsonProperty(PropertyName = "azureBlobFileSystemConfiguration")] + public AzureBlobFileSystemConfiguration AzureBlobFileSystemConfiguration { get; set; } + + /// + /// Gets or sets the NFS file system to mount on each node. + /// + /// + /// This property is mutually exclusive with all other properties. + /// + [JsonProperty(PropertyName = "nfsMountConfiguration")] + public NFSMountConfiguration NfsMountConfiguration { get; set; } + + /// + /// Gets or sets the CIFS/SMB file system to mount on each node. + /// + /// + /// This property is mutually exclusive with all other properties. + /// + [JsonProperty(PropertyName = "cifsMountConfiguration")] + public CIFSMountConfiguration CifsMountConfiguration { get; set; } + + /// + /// Gets or sets the Azure File Share to mount on each node. + /// + /// + /// This property is mutually exclusive with all other properties. + /// + [JsonProperty(PropertyName = "azureFileShareConfiguration")] + public AzureFileShareConfiguration AzureFileShareConfiguration { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AzureBlobFileSystemConfiguration != null) + { + AzureBlobFileSystemConfiguration.Validate(); + } + if (NfsMountConfiguration != null) + { + NfsMountConfiguration.Validate(); + } + if (CifsMountConfiguration != null) + { + CifsMountConfiguration.Validate(); + } + if (AzureFileShareConfiguration != null) + { + AzureFileShareConfiguration.Validate(); + } + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NFSMountConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NFSMountConfiguration.cs new file mode 100644 index 000000000000..0174e4d34a2d --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NFSMountConfiguration.cs @@ -0,0 +1,98 @@ +// +// 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.Batch.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information used to connect to an NFS file system. + /// + public partial class NFSMountConfiguration + { + /// + /// Initializes a new instance of the NFSMountConfiguration class. + /// + public NFSMountConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NFSMountConfiguration class. + /// + /// The URI of the file system to mount. + /// The relative path on the compute + /// node where the file system will be mounted + /// Additional command line options to pass + /// to the mount command. + public NFSMountConfiguration(string source, string relativeMountPath, string mountOptions = default(string)) + { + Source = source; + RelativeMountPath = relativeMountPath; + MountOptions = mountOptions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the URI of the file system to mount. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + /// + /// Gets or sets the relative path on the compute node where the file + /// system will be mounted + /// + /// + /// All file systems are mounted relative to the Batch mounts + /// directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment + /// variable. + /// + [JsonProperty(PropertyName = "relativeMountPath")] + public string RelativeMountPath { get; set; } + + /// + /// Gets or sets additional command line options to pass to the mount + /// command. + /// + /// + /// These are 'net use' options in Windows and 'mount' options in + /// Linux. + /// + [JsonProperty(PropertyName = "mountOptions")] + public string MountOptions { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Source == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Source"); + } + if (RelativeMountPath == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RelativeMountPath"); + } + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkConfiguration.cs index 4a7e05ee383f..d87c4907496c 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkConfiguration.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkConfiguration.cs @@ -11,6 +11,8 @@ namespace Microsoft.Azure.Management.Batch.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -35,10 +37,13 @@ public NetworkConfiguration() /// /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. /// The configuration for endpoints /// on compute nodes in the Batch pool. - public NetworkConfiguration(string subnetId = default(string), PoolEndpointConfiguration endpointConfiguration = default(PoolEndpointConfiguration)) + /// The list of public IPs which the Batch + /// service will use when provisioning Compute Nodes. + public NetworkConfiguration(string subnetId = default(string), PoolEndpointConfiguration endpointConfiguration = default(PoolEndpointConfiguration), IList publicIPs = default(IList)) { SubnetId = subnetId; EndpointConfiguration = endpointConfiguration; + PublicIPs = publicIPs; CustomInit(); } @@ -94,6 +99,21 @@ public NetworkConfiguration() [JsonProperty(PropertyName = "endpointConfiguration")] public PoolEndpointConfiguration EndpointConfiguration { get; set; } + /// + /// Gets or sets the list of public IPs which the Batch service will + /// use when provisioning Compute Nodes. + /// + /// + /// The number of IPs specified here limits the maximum size of the + /// Pool - 50 dedicated nodes or 20 low-priority nodes can be allocated + /// for each public IP. For example, a pool needing 150 dedicated VMs + /// would need at least 3 public IPs specified. Each element of this + /// collection is of the form: + /// /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. + /// + [JsonProperty(PropertyName = "publicIPs")] + public IList PublicIPs { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkSecurityGroupRule.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkSecurityGroupRule.cs index 697847933f7f..d9605754f480 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkSecurityGroupRule.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/NetworkSecurityGroupRule.cs @@ -12,6 +12,8 @@ namespace Microsoft.Azure.Management.Batch.Models { using Microsoft.Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -35,11 +37,14 @@ public NetworkSecurityGroupRule() /// specified IP address, subnet range or tag. /// The source address prefix or tag /// to match for the rule. - public NetworkSecurityGroupRule(int priority, NetworkSecurityGroupRuleAccess access, string sourceAddressPrefix) + /// The source port ranges to match for + /// the rule. + public NetworkSecurityGroupRule(int priority, NetworkSecurityGroupRuleAccess access, string sourceAddressPrefix, IList sourcePortRanges = default(IList)) { Priority = priority; Access = access; SourceAddressPrefix = sourceAddressPrefix; + SourcePortRanges = sourcePortRanges; CustomInit(); } @@ -86,6 +91,19 @@ public NetworkSecurityGroupRule(int priority, NetworkSecurityGroupRuleAccess acc [JsonProperty(PropertyName = "sourceAddressPrefix")] public string SourceAddressPrefix { get; set; } + /// + /// Gets or sets the source port ranges to match for the rule. + /// + /// + /// Valid values are '*' (for all ports 0 - 65535) or arrays of ports + /// or port ranges (i.e. 100-200). The ports should in the range of 0 + /// to 65535 and the port ranges or ports can't overlap. If any other + /// values are provided the request fails with HTTP status code 400. + /// Default value will be *. + /// + [JsonProperty(PropertyName = "sourcePortRanges")] + public IList SourcePortRanges { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs index 6e693357e54e..dcea21954adb 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs @@ -86,7 +86,9 @@ public Pool() /// pool. /// Contains details about the /// current or last completed resize operation. - public Pool(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), string displayName = default(string), System.DateTime? lastModified = default(System.DateTime?), System.DateTime? creationTime = default(System.DateTime?), PoolProvisioningState? provisioningState = default(PoolProvisioningState?), System.DateTime? provisioningStateTransitionTime = default(System.DateTime?), AllocationState? allocationState = default(AllocationState?), System.DateTime? allocationStateTransitionTime = default(System.DateTime?), string vmSize = default(string), DeploymentConfiguration deploymentConfiguration = default(DeploymentConfiguration), int? currentDedicatedNodes = default(int?), int? currentLowPriorityNodes = default(int?), ScaleSettings scaleSettings = default(ScaleSettings), AutoScaleRun autoScaleRun = default(AutoScaleRun), InterNodeCommunicationState? interNodeCommunication = default(InterNodeCommunicationState?), NetworkConfiguration networkConfiguration = default(NetworkConfiguration), int? maxTasksPerNode = default(int?), TaskSchedulingPolicy taskSchedulingPolicy = default(TaskSchedulingPolicy), IList userAccounts = default(IList), IList metadata = default(IList), StartTask startTask = default(StartTask), IList certificates = default(IList), IList applicationPackages = default(IList), IList applicationLicenses = default(IList), ResizeOperationStatus resizeOperationStatus = default(ResizeOperationStatus)) + /// A list of file systems to mount on + /// each node in the pool. + public Pool(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), string displayName = default(string), System.DateTime? lastModified = default(System.DateTime?), System.DateTime? creationTime = default(System.DateTime?), PoolProvisioningState? provisioningState = default(PoolProvisioningState?), System.DateTime? provisioningStateTransitionTime = default(System.DateTime?), AllocationState? allocationState = default(AllocationState?), System.DateTime? allocationStateTransitionTime = default(System.DateTime?), string vmSize = default(string), DeploymentConfiguration deploymentConfiguration = default(DeploymentConfiguration), int? currentDedicatedNodes = default(int?), int? currentLowPriorityNodes = default(int?), ScaleSettings scaleSettings = default(ScaleSettings), AutoScaleRun autoScaleRun = default(AutoScaleRun), InterNodeCommunicationState? interNodeCommunication = default(InterNodeCommunicationState?), NetworkConfiguration networkConfiguration = default(NetworkConfiguration), int? maxTasksPerNode = default(int?), TaskSchedulingPolicy taskSchedulingPolicy = default(TaskSchedulingPolicy), IList userAccounts = default(IList), IList metadata = default(IList), StartTask startTask = default(StartTask), IList certificates = default(IList), IList applicationPackages = default(IList), IList applicationLicenses = default(IList), ResizeOperationStatus resizeOperationStatus = default(ResizeOperationStatus), IList mountConfiguration = default(IList)) : base(id, name, type, etag) { DisplayName = displayName; @@ -113,6 +115,7 @@ public Pool() ApplicationPackages = applicationPackages; ApplicationLicenses = applicationLicenses; ResizeOperationStatus = resizeOperationStatus; + MountConfiguration = mountConfiguration; CustomInit(); } @@ -365,6 +368,16 @@ public Pool() [JsonProperty(PropertyName = "properties.resizeOperationStatus")] public ResizeOperationStatus ResizeOperationStatus { get; private set; } + /// + /// Gets or sets a list of file systems to mount on each node in the + /// pool. + /// + /// + /// This supports Azure Files, NFS, CIFS/SMB, and Blobfuse. + /// + [JsonProperty(PropertyName = "properties.mountConfiguration")] + public IList MountConfiguration { get; set; } + /// /// Validate the object. /// @@ -437,6 +450,16 @@ public virtual void Validate() } } } + if (MountConfiguration != null) + { + foreach (var element4 in MountConfiguration) + { + if (element4 != null) + { + element4.Validate(); + } + } + } } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/StartTask.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/StartTask.cs index 415039d05363..8a7eb9cbdcbd 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/StartTask.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/StartTask.cs @@ -145,7 +145,7 @@ public StartTask() /// task to complete. In this case, other tasks can start executing on /// the compute node while the start task is still running; and even if /// the start task fails, new tasks will continue to be scheduled on - /// the node. The default is false. + /// the node. The default is true. /// [JsonProperty(PropertyName = "waitForSuccess")] public bool? WaitForSuccess { get; set; } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs index 01146fb83096..ad8c40e10289 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs @@ -36,11 +36,15 @@ public TaskContainerSettings() /// container create command. /// The private registry which contains the /// container image. - public TaskContainerSettings(string imageName, string containerRunOptions = default(string), ContainerRegistry registry = default(ContainerRegistry)) + /// A flag to indicate where the + /// container task working directory is. The default is + /// 'taskWorkingDirectory'. + public TaskContainerSettings(string imageName, string containerRunOptions = default(string), ContainerRegistry registry = default(ContainerRegistry), ContainerWorkingDirectory? workingDirectory = default(ContainerWorkingDirectory?)) { ContainerRunOptions = containerRunOptions; ImageName = imageName; Registry = registry; + WorkingDirectory = workingDirectory; CustomInit(); } @@ -83,6 +87,17 @@ public TaskContainerSettings() [JsonProperty(PropertyName = "registry")] public ContainerRegistry Registry { get; set; } + /// + /// Gets or sets a flag to indicate where the container task working + /// directory is. The default is 'taskWorkingDirectory'. + /// + /// + /// Possible values include: 'TaskWorkingDirectory', + /// 'ContainerImageDefault' + /// + [JsonProperty(PropertyName = "workingDirectory")] + public ContainerWorkingDirectory? WorkingDirectory { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs index e3748044fb48..183d718438f4 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs @@ -19,15 +19,26 @@ public static IEnumerable> ApiInfo_BatchManagement { return new Tuple[] { - new Tuple("Batch", "Application", "2019-04-01"), - new Tuple("Batch", "ApplicationPackage", "2019-04-01"), - new Tuple("Batch", "BatchAccount", "2019-04-01"), - new Tuple("Batch", "Certificate", "2019-04-01"), - new Tuple("Batch", "Location", "2019-04-01"), - new Tuple("Batch", "Operations", "2019-04-01"), - new Tuple("Batch", "Pool", "2019-04-01"), + new Tuple("Batch", "Application", "2019-08-01"), + new Tuple("Batch", "ApplicationPackage", "2019-08-01"), + new Tuple("Batch", "BatchAccount", "2019-08-01"), + new Tuple("Batch", "Certificate", "2019-08-01"), + new Tuple("Batch", "Location", "2019-08-01"), + new Tuple("Batch", "Operations", "2019-08-01"), + new Tuple("Batch", "Pool", "2019-08-01"), }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "latest"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\work\\github\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "ad759850354ddb7b4ffea0a49b70243fd9ec5a42"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj index 28825a43af79..2dbfad3f91ba 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj @@ -8,7 +8,7 @@ Provides management capabilities for Azure Batch service accounts. Microsoft Azure Batch Management Library Microsoft.Azure.Management.Batch - 8.0.0 + 9.0.0 Microsoft Azure batch management;batch; For detailed release notes, see: https://aka.ms/batch-net-management-changelog diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs index 09f2a7355185..227c66712204 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Batch Management Library")] [assembly: AssemblyDescription("Provides management functions for Microsoft Azure Batch services.")] -[assembly: AssemblyVersion("8.0.0.0")] -[assembly: AssemblyFileVersion("8.0.0.0")] +[assembly: AssemblyVersion("9.0.0.0")] +[assembly: AssemblyFileVersion("9.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs index 292671e41fb0..2ab7473a932e 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs @@ -19,7 +19,7 @@ public async Task BatchCertificateEndToEndAsync() { string resourceGroupName = TestUtilities.GenerateName(); string batchAccountName = TestUtilities.GenerateName(); - string batchCertName = "SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; + string batchCertName = "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; ResourceGroup group = new ResourceGroup(this.Location); await this.ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); @@ -38,12 +38,12 @@ public async Task BatchCertificateEndToEndAsync() param.ThumbprintAlgorithm = "sha1"; var certResponse = await this.BatchManagementClient.Certificate.CreateAsync(resourceGroupName, batchAccountName, batchCertName, param); - Assert.Equal("CFF2AB63C8C955AAF71989EFA641B906558D9FB7", certResponse.Thumbprint); + Assert.Equal(param.Thumbprint, certResponse.Thumbprint); var referenceId = - $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/certificates/{batchCertName.ToUpperInvariant()}"; + $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/certificates/{batchCertName}"; Assert.Equal(referenceId, certResponse.Id); Assert.Equal(CertificateProvisioningState.Succeeded, certResponse.ProvisioningState); - Assert.Equal("SHA1", certResponse.ThumbprintAlgorithm); + Assert.Equal("sha1", certResponse.ThumbprintAlgorithm); Assert.Equal(CertificateFormat.Pfx, certResponse.Format); // List the certificates @@ -52,10 +52,10 @@ public async Task BatchCertificateEndToEndAsync() // Get the cert var cert = await this.BatchManagementClient.Certificate.GetAsync(resourceGroupName, batchAccountName, batchCertName); - Assert.Equal("CFF2AB63C8C955AAF71989EFA641B906558D9FB7", cert.Thumbprint); + Assert.Equal(param.Thumbprint, cert.Thumbprint); Assert.Equal(referenceId, cert.Id); Assert.Equal(CertificateProvisioningState.Succeeded, cert.ProvisioningState); - Assert.Equal("SHA1", cert.ThumbprintAlgorithm); + Assert.Equal("sha1", cert.ThumbprintAlgorithm); Assert.Equal(CertificateFormat.Pfx, cert.Format); Assert.Null(cert.DeleteCertificateError); diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountCanCreateWithBYOSEnabled.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountCanCreateWithBYOSEnabled.json index fd4129b02f6b..1cd87599f9b9 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountCanCreateWithBYOSEnabled.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountCanCreateWithBYOSEnabled.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00129458-a132-49da-aa91-4fbf0fa4b700" + "4d71f547-5604-484b-a5a0-5885dc2863b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:58 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "5438567d-de93-4d22-a1c9-a25a9bd80667" + "872448e8-62c3-45fe-9032-7bfc320da79f" ], "x-ms-correlation-request-id": [ - "5438567d-de93-4d22-a1c9-a25a9bd80667" + "872448e8-62c3-45fe-9032-7bfc320da79f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215559Z:5438567d-de93-4d22-a1c9-a25a9bd80667" + "WESTUS:20190806T202724Z:872448e8-62c3-45fe-9032-7bfc320da79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3859" + "Date": [ + "Tue, 06 Aug 2019 20:27:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4272" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet9816?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7c2c1ff-0e85-4816-8098-da767690ea9f" + "4dd69b62-9049-43d1-a02e-29e93c5664ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:59 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "af03d7d4-94e7-4e56-9e5c-15053a7e9783" + "c96be7b7-1aea-4e93-affb-60db908fd86b" ], "x-ms-correlation-request-id": [ - "af03d7d4-94e7-4e56-9e5c-15053a7e9783" + "c96be7b7-1aea-4e93-affb-60db908fd86b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215600Z:af03d7d4-94e7-4e56-9e5c-15053a7e9783" + "WESTUS:20190806T202726Z:c96be7b7-1aea-4e93-affb-60db908fd86b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 20:27:25 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816\",\r\n \"name\": \"azsmnet9816\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801\",\r\n \"name\": \"azsmnet801\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.KeyVault/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.KeyVault/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87bb0bdb-7ac4-4424-8b78-30fc2a6c0a7c" + "ca485673-c03f-409a-ace6-06bd86cd5e74" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -149,23 +149,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:01 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "95067c0b-aeff-4993-8dd6-dbd4fb39aa9c" + "f970eeda-10d3-40d3-bdc7-48aa1cba5e2f" ], "x-ms-correlation-request-id": [ - "95067c0b-aeff-4993-8dd6-dbd4fb39aa9c" + "f970eeda-10d3-40d3-bdc7-48aa1cba5e2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215602Z:95067c0b-aeff-4993-8dd6-dbd4fb39aa9c" + "WESTUS:20190806T202728Z:f970eeda-10d3-40d3-bdc7-48aa1cba5e2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,8 +170,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 20:27:27 GMT" + ], "Content-Length": [ - "5523" + "6252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,25 +183,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet9816/providers/Microsoft.KeyVault//vaults/azsmnet8858?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0ODg1OD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet801/providers/Microsoft.KeyVault//vaults/azsmnet6883?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQ2ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enabledForDiskEncryption\": true\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "92e70ef4-77f6-41b6-9bf6-116286a5a63f" + "ec8a1e89-c209-4b5a-96d0-54281d4ecfc2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -215,17 +215,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.1.0.244" + "1.1.0.249" + ], + "x-ms-request-id": [ + "d6b1a82b-5630-493c-a617-af04ed677e3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,6 +230,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -240,19 +240,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "61e4bc60-2749-4e32-85eb-1c95e9573e72" + "1198" ], "x-ms-correlation-request-id": [ - "61e4bc60-2749-4e32-85eb-1c95e9573e72" + "74ed7335-d9d2-44d0-996c-474e4edf0194" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215604Z:61e4bc60-2749-4e32-85eb-1c95e9573e72" + "WESTUS:20190806T202730Z:74ed7335-d9d2-44d0-996c-474e4edf0194" + ], + "Date": [ + "Tue, 06 Aug 2019 20:27:30 GMT" ], "Content-Length": [ - "678" + "677" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,19 +261,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.KeyVault/vaults/azsmnet8858\",\r\n \"name\": \"azsmnet8858\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet8858.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.KeyVault/vaults/azsmnet6883\",\r\n \"name\": \"azsmnet6883\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet6883.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet9816/providers/Microsoft.KeyVault//vaults/azsmnet8858?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0ODg1OD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet801/providers/Microsoft.KeyVault//vaults/azsmnet6883?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQ2ODgzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -281,17 +281,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.1.0.244" + "1.1.0.249" + ], + "x-ms-request-id": [ + "b86d07ac-791e-4a82-8173-c1e469e4781d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -299,6 +296,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -308,17 +308,17 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ - "4c232227-461e-4d27-9168-40fff771a775" - ], "x-ms-correlation-request-id": [ - "4c232227-461e-4d27-9168-40fff771a775" + "7e480fde-7ba8-4bf6-8ef0-afd1beab1983" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215634Z:4c232227-461e-4d27-9168-40fff771a775" + "WESTUS:20190806T202801Z:7e480fde-7ba8-4bf6-8ef0-afd1beab1983" + ], + "Date": [ + "Tue, 06 Aug 2019 20:28:01 GMT" ], "Content-Length": [ - "674" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,55 +327,49 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.KeyVault/vaults/azsmnet8858\",\r\n \"name\": \"azsmnet8858\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet8858.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.KeyVault/vaults/azsmnet6883\",\r\n \"name\": \"azsmnet6883\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet6883.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDk3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ4NDI1P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.KeyVault/vaults/azsmnet8858\",\r\n \"url\": \"https://azsmnet8858.vault.azure.net/\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.KeyVault/vaults/azsmnet6883\",\r\n \"url\": \"https://azsmnet6883.vault.azure.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "910479f1-3bfc-45a4-9c48-313dea0b45ea" + "5eea5ecb-9069-4311-b0e9-1912ad9090b8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "332" + "331" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:35 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497/operationResults/b0cda05d-102f-4311-991a-8c3f13d6b1e8?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425/operationResults/4cbcaa65-7f31-4611-a845-91b93b832085?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b0cda05d-102f-4311-991a-8c3f13d6b1e8" + "4cbcaa65-7f31-4611-a845-91b93b832085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -383,35 +377,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2ac11e95-966b-4522-8fd1-94691c440651" + "fe8ba0fb-435b-42ea-8259-87be89a7f80f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215636Z:2ac11e95-966b-4522-8fd1-94691c440651" + "WESTUS:20190806T202805Z:fe8ba0fb-435b-42ea-8259-87be89a7f80f" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:28:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497/operationResults/b0cda05d-102f-4311-991a-8c3f13d6b1e8?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDk3L29wZXJhdGlvblJlc3VsdHMvYjBjZGEwNWQtMTAyZi00MzExLTk5MWEtOGMzZjEzZDZiMWU4P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425/operationResults/4cbcaa65-7f31-4611-a845-91b93b832085?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ4NDI1L29wZXJhdGlvblJlc3VsdHMvNGNiY2FhNjUtN2YzMS00NjExLWE4NDUtOTFiOTNiODMyMDg1P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -419,23 +419,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C83697BBB489\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AAC9F34A6DE\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "c0b6e36e-4c1d-4a08-b550-1249f4a788be" + "08cdbbcd-05e2-4749-b5e3-7bdbfaa36ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,14 +437,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "0d28d4ec-78cc-4931-97bd-13b855326b26" + "41346060-e265-4573-8a1b-839766557768" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215651Z:0d28d4ec-78cc-4931-97bd-13b855326b26" + "WESTUS:20190806T202820Z:41346060-e265-4573-8a1b-839766557768" + ], + "Date": [ + "Tue, 06 Aug 2019 20:28:19 GMT" ], "Content-Length": [ - "656" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,28 +459,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:56:51 GMT" + "Tue, 06 Aug 2019 20:28:20 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497\",\r\n \"name\": \"azsmnet497\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet497.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.KeyVault/vaults/azsmnet8858\",\r\n \"url\": \"https://azsmnet8858.vault.azure.net/\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425\",\r\n \"name\": \"azsmnet8425\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8425.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.KeyVault/vaults/azsmnet6883\",\r\n \"url\": \"https://azsmnet6883.vault.azure.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDk3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ4NDI1P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1029145f-4f35-4314-95d9-06e2dc114eaf" + "ca3845f5-17bc-4162-8cf6-83475384ac3b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -488,23 +488,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:52 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C8368E7FD1B8\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AAC95E53EBE\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "87952b3d-ff32-4072-bdcb-c01aba1acd44" + "cb4bd132-b5c9-4923-bc15-02dcdab29144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,14 +506,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "da982085-46cd-4fbc-8c92-90ac1c55cb4b" + "f2610e79-8660-4ff9-b25f-e16f15dbffec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215652Z:da982085-46cd-4fbc-8c92-90ac1c55cb4b" + "WESTUS:20190806T202820Z:f2610e79-8660-4ff9-b25f-e16f15dbffec" + ], + "Date": [ + "Tue, 06 Aug 2019 20:28:19 GMT" ], "Content-Length": [ - "656" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,28 +528,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:56:36 GMT" + "Tue, 06 Aug 2019 20:28:04 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.Batch/batchAccounts/azsmnet497\",\r\n \"name\": \"azsmnet497\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet497.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet9816/providers/Microsoft.KeyVault/vaults/azsmnet8858\",\r\n \"url\": \"https://azsmnet8858.vault.azure.net/\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.Batch/batchAccounts/azsmnet8425\",\r\n \"name\": \"azsmnet8425\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8425.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet801/providers/Microsoft.KeyVault/vaults/azsmnet6883\",\r\n \"url\": \"https://azsmnet6883.vault.azure.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet9816?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet801?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6992913-4a2e-4fa5-b1d7-db6103e44d9f" + "f553905e-e919-4a8e-8bd6-311e539ad568" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -557,14 +557,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:56:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -573,13 +570,13 @@ "14999" ], "x-ms-request-id": [ - "ebfbcfd6-d402-41c3-8877-0160b6f5822c" + "a7395208-6dd5-464a-bc2d-214bce3ca27c" ], "x-ms-correlation-request-id": [ - "ebfbcfd6-d402-41c3-8877-0160b6f5822c" + "a7395208-6dd5-464a-bc2d-214bce3ca27c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215653Z:ebfbcfd6-d402-41c3-8877-0160b6f5822c" + "WESTUS:20190806T202822Z:a7395208-6dd5-464a-bc2d-214bce3ca27c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -587,26 +584,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:28:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -614,14 +614,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:57:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -630,13 +627,13 @@ "11998" ], "x-ms-request-id": [ - "b568e9bb-5be6-413f-acac-9eb467f6cd0b" + "237ddacf-3262-4462-bc95-d2be1369085e" ], "x-ms-correlation-request-id": [ - "b568e9bb-5be6-413f-acac-9eb467f6cd0b" + "237ddacf-3262-4462-bc95-d2be1369085e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215708Z:b568e9bb-5be6-413f-acac-9eb467f6cd0b" + "WESTUS:20190806T202837Z:237ddacf-3262-4462-bc95-d2be1369085e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -644,26 +641,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:28:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -671,14 +671,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:57:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -687,13 +684,13 @@ "11997" ], "x-ms-request-id": [ - "f4acb459-dbb1-4ea5-904c-b658d7893c38" + "55bf9b17-8214-49cb-8f53-d14af009792a" ], "x-ms-correlation-request-id": [ - "f4acb459-dbb1-4ea5-904c-b658d7893c38" + "55bf9b17-8214-49cb-8f53-d14af009792a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215724Z:f4acb459-dbb1-4ea5-904c-b658d7893c38" + "WESTUS:20190806T202852Z:55bf9b17-8214-49cb-8f53-d14af009792a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -701,26 +698,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:28:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -728,14 +728,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:57:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -744,13 +741,13 @@ "11996" ], "x-ms-request-id": [ - "85af4330-b717-4c6e-ab5e-fb097ecfbc60" + "3d8e15c4-093e-4b21-9d0d-733dad975155" ], "x-ms-correlation-request-id": [ - "85af4330-b717-4c6e-ab5e-fb097ecfbc60" + "3d8e15c4-093e-4b21-9d0d-733dad975155" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215739Z:85af4330-b717-4c6e-ab5e-fb097ecfbc60" + "WESTUS:20190806T202907Z:3d8e15c4-093e-4b21-9d0d-733dad975155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,26 +755,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:29:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -785,14 +785,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:57:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -801,13 +798,13 @@ "11995" ], "x-ms-request-id": [ - "1bb15cb4-f4c3-4a37-a8cd-24f46b180bbd" + "b317a02c-a34f-4a7d-a652-76a871888286" ], "x-ms-correlation-request-id": [ - "1bb15cb4-f4c3-4a37-a8cd-24f46b180bbd" + "b317a02c-a34f-4a7d-a652-76a871888286" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215754Z:1bb15cb4-f4c3-4a37-a8cd-24f46b180bbd" + "WESTUS:20190806T202922Z:b317a02c-a34f-4a7d-a652-76a871888286" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -815,26 +812,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:29:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -842,14 +842,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -858,13 +855,13 @@ "11994" ], "x-ms-request-id": [ - "577d3374-3c94-4c5a-97d5-446d6cf33d3c" + "1971f6b2-cd2c-46d6-8a2f-18e3d2f6cb1d" ], "x-ms-correlation-request-id": [ - "577d3374-3c94-4c5a-97d5-446d6cf33d3c" + "1971f6b2-cd2c-46d6-8a2f-18e3d2f6cb1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215809Z:577d3374-3c94-4c5a-97d5-446d6cf33d3c" + "WESTUS:20190806T202937Z:1971f6b2-cd2c-46d6-8a2f-18e3d2f6cb1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -872,26 +869,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:29:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -899,29 +899,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:24 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-request-id": [ - "e6318211-94cf-431a-a3e8-3187d4714b09" + "37b64131-5365-46ec-aeb6-5ad9ec87417b" ], "x-ms-correlation-request-id": [ - "e6318211-94cf-431a-a3e8-3187d4714b09" + "37b64131-5365-46ec-aeb6-5ad9ec87417b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215824Z:e6318211-94cf-431a-a3e8-3187d4714b09" + "WESTUS:20190806T202953Z:37b64131-5365-46ec-aeb6-5ad9ec87417b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,26 +926,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:29:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -956,23 +956,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:39 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-request-id": [ - "c3151615-d915-469a-89b1-745a7fa75510" + "6da79fc5-3e83-4352-8d07-3d8a6e10c9a4" ], "x-ms-correlation-request-id": [ - "c3151615-d915-469a-89b1-745a7fa75510" + "6da79fc5-3e83-4352-8d07-3d8a6e10c9a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215840Z:c3151615-d915-469a-89b1-745a7fa75510" + "WESTUS:20190806T203008Z:6da79fc5-3e83-4352-8d07-3d8a6e10c9a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,26 +977,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODAxLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPREF4TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1007,23 +1007,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:39 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "f7c256c4-199c-4d0e-ad24-efa5cca458d6" + "5b516063-4fbd-49a0-a00e-535f03179e0d" ], "x-ms-correlation-request-id": [ - "f7c256c4-199c-4d0e-ad24-efa5cca458d6" + "5b516063-4fbd-49a0-a00e-535f03179e0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215840Z:f7c256c4-199c-4d0e-ad24-efa5cca458d6" + "WESTUS:20190806T203008Z:5b516063-4fbd-49a0-a00e-535f03179e0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1031,11 +1028,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1044,12 +1044,12 @@ ], "Names": { "BatchAccountCanCreateWithBYOSEnabled": [ - "azsmnet9816", - "azsmnet497", - "azsmnet8858" + "azsmnet801", + "azsmnet8425", + "azsmnet6883" ] }, "Variables": { - "SubscriptionId": "0add380e-d91b-4aaf-aa97-814326a8ab7f" + "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountEndToEndAsync.json index ebf4c95b2264..d81a21de0faa 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.AccountTests/BatchAccountEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22399f38-f364-4800-85ad-abb177acd76d" + "f6b824f5-37d9-4b9b-ad77-6f5e2e704cf2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:40 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "f2d8a8e0-5c2f-4d95-bb94-aaefdcec2a48" + "5a4f59b7-3dc5-4db1-a593-714a41d5af45" ], "x-ms-correlation-request-id": [ - "f2d8a8e0-5c2f-4d95-bb94-aaefdcec2a48" + "5a4f59b7-3dc5-4db1-a593-714a41d5af45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215840Z:f2d8a8e0-5c2f-4d95-bb94-aaefdcec2a48" + "WESTUS:20190806T203009Z:5a4f59b7-3dc5-4db1-a593-714a41d5af45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3859" + "Date": [ + "Tue, 06 Aug 2019 20:30:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4272" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet3879?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzODc5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet7026?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MDI2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cbafaa79-a263-40e9-936c-f3dc3745b592" + "f33f9aab-946d-4d36-a567-54f4219af4bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:41 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "e95cd5d9-5a98-4f6a-a53a-1928000d32ab" + "eca7c67e-f082-4666-b534-6329a7393bd9" ], "x-ms-correlation-request-id": [ - "e95cd5d9-5a98-4f6a-a53a-1928000d32ab" + "eca7c67e-f082-4666-b534-6329a7393bd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215841Z:e95cd5d9-5a98-4f6a-a53a-1928000d32ab" + "WESTUS:20190806T203010Z:eca7c67e-f082-4666-b534-6329a7393bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 20:30:09 GMT" + ], "Content-Length": [ "175" ], @@ -123,52 +123,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879\",\r\n \"name\": \"azsmnet3879\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026\",\r\n \"name\": \"azsmnet7026\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3968\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet358\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b588f79f-c704-417d-9aaa-10bc80dfd349" + "03956aae-994d-4105-b4a0-1706ada99dce" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "72" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "819aa97f-798e-487e-acd6-03427a2b00cc" + "3383d2f9-fa70-4a1c-a6f2-c4348929f5b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -176,11 +170,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "2d096fc8-c06e-4b50-8d4b-a8e87eb7ff46" + "664c50b7-a144-4283-a5ac-ee802a36b559" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215842Z:2d096fc8-c06e-4b50-8d4b-a8e87eb7ff46" + "WESTUS:20190806T203011Z:664c50b7-a144-4283-a5ac-ee802a36b559" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:10 GMT" ], "Content-Length": [ "22" @@ -196,48 +196,42 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3968\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet358\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87dc5755-6025-4247-ad58-5e89ea51b0fb" + "42c1bc50-ee75-41e7-a824-77bd91e10d34" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "72" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:57 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "5a381c6f-7710-4c92-a527-cfcc53b853d3" + "d14af053-812d-470b-9ddf-1b827def186f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -245,14 +239,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "20a92656-2692-47ca-9c6c-ed0ea3bf1f7c" + "3111ad4a-47b9-4287-aa44-0c226e9c7cbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215858Z:20a92656-2692-47ca-9c6c-ed0ea3bf1f7c" + "WESTUS:20190806T203028Z:3111ad4a-47b9-4287-aa44-0c226e9c7cbb" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:27 GMT" ], "Content-Length": [ - "110" + "109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,25 +261,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet3968' is already in use.\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet358' is already in use.\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fea2527-ad6e-4bbe-802a-7a422b5e658c" + "2c6e8366-a555-4efc-842d-ec3dd2aa3b85" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -293,23 +293,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968/operationResults/e68b43b9-162c-4186-bc79-3c1d98e4ab0b?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358/operationResults/f0f23fe5-89eb-44bf-a71d-10180ae11e59?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e68b43b9-162c-4186-bc79-3c1d98e4ab0b" + "f0f23fe5-89eb-44bf-a71d-10180ae11e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,35 +311,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2db83fbe-8c7b-4ce2-9b2d-ea04b304f00a" + "e3ed039e-c9ff-4f30-96e5-c299822fb549" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215843Z:2db83fbe-8c7b-4ce2-9b2d-ea04b304f00a" + "WESTUS:20190806T203012Z:e3ed039e-c9ff-4f30-96e5-c299822fb549" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968/operationResults/e68b43b9-162c-4186-bc79-3c1d98e4ab0b?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OC9vcGVyYXRpb25SZXN1bHRzL2U2OGI0M2I5LTE2MmMtNDE4Ni1iYzc5LTNjMWQ5OGU0YWIwYj9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358/operationResults/f0f23fe5-89eb-44bf-a71d-10180ae11e59?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4L29wZXJhdGlvblJlc3VsdHMvZjBmMjNmZTUtODllYi00NGJmLWE3MWQtMTAxODBhZTExZTU5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -353,23 +353,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C836E33A2C0B\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AACEB4B9136\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "53fa4f23-86d4-423c-806b-07feac8d5d95" + "b7d4285b-de51-4f75-8c23-d5eff06cd646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -377,14 +371,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "edbb5a20-4784-47ee-9073-02a8068b74df" + "9fda3882-312d-45b6-854e-fc477369d9c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215858Z:edbb5a20-4784-47ee-9073-02a8068b74df" + "WESTUS:20190806T203028Z:9fda3882-312d-45b6-854e-fc477369d9c5" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:27 GMT" ], "Content-Length": [ - "506" + "1845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,28 +393,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:58:58 GMT" + "Tue, 06 Aug 2019 20:30:28 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968\",\r\n \"name\": \"azsmnet3968\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet3968.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358\",\r\n \"name\": \"azsmnet358\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet358.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82548a15-50d5-4a02-b2b6-fa9feae3f4f5" + "abbb5bcd-6103-4f78-bfa2-6157a5e32d28" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -422,23 +422,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C836DA0073DC\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AACE2287311\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "5013334f-e2d7-488b-956a-1a7f1fb9013f" + "e5d0e52a-617e-4262-be03-444613078a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,14 +440,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "1d00d88a-c766-4f1b-825f-06ddb2a64efc" + "c2691244-1003-437a-9631-aec3c3a8d0bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215858Z:1d00d88a-c766-4f1b-825f-06ddb2a64efc" + "WESTUS:20190806T203028Z:c2691244-1003-437a-9631-aec3c3a8d0bd" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:27 GMT" ], "Content-Length": [ - "506" + "1845" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,28 +462,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:58:43 GMT" + "Tue, 06 Aug 2019 20:30:12 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968\",\r\n \"name\": \"azsmnet3968\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet3968.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358\",\r\n \"name\": \"azsmnet358\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet358.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591305e2-b8a2-4989-963b-ee571ac4dece" + "01bcbd65-678b-409f-a0f1-2c5d42fc8450" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -491,20 +491,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "1299298b-11e5-49d4-904d-1e05e3dc1f82" + "1e2695b8-1b40-4653-ae13-a899d19b2029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,11 +506,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "ecbc2130-1871-4129-9a9f-31953c93c96e" + "ca11ebd4-bbcf-4fe6-8b3e-d80df82f36ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215914Z:ecbc2130-1871-4129-9a9f-31953c93c96e" + "WESTUS:20190806T203045Z:ca11ebd4-bbcf-4fe6-8b3e-d80df82f36ec" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:44 GMT" ], "Content-Length": [ "193" @@ -528,25 +528,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:1299298b-11e5-49d4-904d-1e05e3dc1f82\\nTime:2019-04-23T21:59:14.9388964Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:1e2695b8-1b40-4653-ae13-a899d19b2029\\nTime:2019-08-06T20:30:45.0581699Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968/listKeys?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358/listKeys?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b578fba-97f5-411a-89f4-f71c10d8724e" + "0fc27cff-ee0d-4d18-8ef3-a2d32b1f109b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -554,20 +554,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "a2d80093-7124-49da-a87a-ea0ee54a7dbb" + "248775b6-ed76-4008-839d-c8278f28e691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,14 +569,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "d3d0aada-e418-4b9a-be10-51331d99cdad" + "63b6262c-194b-4b14-9eb9-a0d02317ed98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215858Z:d3d0aada-e418-4b9a-be10-51331d99cdad" + "WESTUS:20190806T203028Z:63b6262c-194b-4b14-9eb9-a0d02317ed98" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:27 GMT" ], "Content-Length": [ - "233" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,25 +591,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet3968\",\r\n \"primary\": \"M5UoQGNzArnV2VLWWuxuDgGw7NBmlf6NxHQ4m4clCwhVspEEUlAM5uxnn8jHwh9lktI7/8MplvDtYLfaiM/Dcw==\",\r\n \"secondary\": \"AHeZzTb+3IVSgdZ5v0u63SB3v4flUbTUGufeunIfwjIH+F0IiymAYvZcW41n+8/kXb1GBdAktXeUnfT0x5F63Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet358\",\r\n \"primary\": \"RExyVcXanCgImUNDZinmUcoMMZISBKCyJ+RMSgj9qnT7wu6VxLAwTE/0NEQfI+6ALoAMaZERTQrU9DSpEdtClw==\",\r\n \"secondary\": \"7u10TzmSm/amq/KU+Kv2ypUB6ZKs9fXOd/g5YL5ukAclS/8KVV5J5S2C0htOgE0MtCmPcNHOk0nnCdknYMOzFw==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968/regenerateKeys?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358/regenerateKeys?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc984f47-65e0-4cd9-9337-a54953641991" + "06e39c69-fd34-41ba-932e-fdb17ddf1d03" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -623,20 +623,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-request-id": [ - "4b4b29a0-3fc4-4857-bc96-657c2c4b3ac3" + "3e7c5f5b-d467-4ef3-a4fa-2fe83393beb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -644,14 +638,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "e94829e8-fd24-41c6-8c31-5dab8768616f" + "fb36b8e7-5d88-4b07-b482-50aa3ec371de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215859Z:e94829e8-fd24-41c6-8c31-5dab8768616f" + "WESTUS:20190806T203029Z:fb36b8e7-5d88-4b07-b482-50aa3ec371de" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:28 GMT" ], "Content-Length": [ - "233" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,25 +660,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet3968\",\r\n \"primary\": \"YjoJIexjRt6QwPXCyJAQNipjJi5QH07t8edizvLcJgV27vuC26bo5a4Y1/7ApITy5SWhjjnvblWH2JjwwXxZMg==\",\r\n \"secondary\": \"AHeZzTb+3IVSgdZ5v0u63SB3v4flUbTUGufeunIfwjIH+F0IiymAYvZcW41n+8/kXb1GBdAktXeUnfT0x5F63Q==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet358\",\r\n \"primary\": \"mH9eaO21O5bbsKqST4OL+JyNTCvhEk/2E/V+J8CiZQMdEBqg5AG7NLmGwblPuOR6+It+R+7p9QpqQ/bYJysR2w==\",\r\n \"secondary\": \"7u10TzmSm/amq/KU+Kv2ypUB6ZKs9fXOd/g5YL5ukAclS/8KVV5J5S2C0htOgE0MtCmPcNHOk0nnCdknYMOzFw==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b78d641-7cd1-4163-b830-ad0b38b7562d" + "5e368763-77f0-4e1d-96b3-6102724729e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -686,20 +686,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "442a07ad-0402-47c4-b710-a4fa5cbc4515" + "50df1edd-4e2d-4cfb-809f-8a6e73ba57a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -707,14 +701,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "1c7a26d8-6b1a-4569-801b-25f354e49b56" + "f723364a-072f-4114-a821-513abfebed85" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215859Z:1c7a26d8-6b1a-4569-801b-25f354e49b56" + "WESTUS:20190806T203029Z:f723364a-072f-4114-a821-513abfebed85" + ], + "Date": [ + "Tue, 06 Aug 2019 20:30:28 GMT" ], "Content-Length": [ - "518" + "1857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,25 +723,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968\",\r\n \"name\": \"azsmnet3968\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet3968.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358\",\r\n \"name\": \"azsmnet358\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet358.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3879/providers/Microsoft.Batch/batchAccounts/azsmnet3968?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk2OD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet7026/providers/Microsoft.Batch/batchAccounts/azsmnet358?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MzU4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d295f6bd-6b27-481c-896e-bc9e24a08067" + "5866b6f8-2c73-46a5-a59e-28a32e637b9e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -749,23 +749,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:58:58 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet3968-2021af36-b2dd-45cf-b4ef-b3b691c9d967?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet358-521624ab-65cb-4de7-9231-47fe65091a19?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2021af36-b2dd-45cf-b4ef-b3b691c9d967" + "521624ab-65cb-4de7-9231-47fe65091a19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -773,35 +767,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "42b47c80-bc45-43ac-ae6e-27ce5d3fbf1b" + "b7e38498-3459-49df-b1a0-a6b51b5062f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215859Z:42b47c80-bc45-43ac-ae6e-27ce5d3fbf1b" + "WESTUS:20190806T203029Z:b7e38498-3459-49df-b1a0-a6b51b5062f9" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet3968-2021af36-b2dd-45cf-b4ef-b3b691c9d967?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzk2OC0yMDIxYWYzNi1iMmRkLTQ1Y2YtYjRlZi1iM2I2OTFjOWQ5Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet358-521624ab-65cb-4de7-9231-47fe65091a19?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MzU4LTUyMTYyNGFiLTY1Y2ItNGRlNy05MjMxLTQ3ZmU2NTA5MWExOT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -809,17 +809,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9e62e2a0-6052-4248-8bb3-632b45bdffb9" + "31da1a8e-3dce-4bbf-b05a-83559b9e4c73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -827,35 +821,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "18895cff-b2fc-4f9a-a1da-437215ed58ea" + "9efe9199-0c91-4470-86a3-a224783df22d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215914Z:18895cff-b2fc-4f9a-a1da-437215ed58ea" + "WESTUS:20190806T203044Z:9efe9199-0c91-4470-86a3-a224783df22d" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet3968-2021af36-b2dd-45cf-b4ef-b3b691c9d967?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzk2OC0yMDIxYWYzNi1iMmRkLTQ1Y2YtYjRlZi1iM2I2OTFjOWQ5Njc/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet358-521624ab-65cb-4de7-9231-47fe65091a19?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MzU4LTUyMTYyNGFiLTY1Y2ItNGRlNy05MjMxLTQ3ZmU2NTA5MWExOT9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -863,17 +863,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "82a532ea-81e3-4a6f-8259-e7796951a958" + "06557dbb-7eb2-4130-bd13-118354300711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -881,41 +875,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "c55e4245-dc0d-4cca-8482-1fedf9c7de8e" + "a2fa413b-670e-4e59-b78c-37fa2d62db1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215914Z:c55e4245-dc0d-4cca-8482-1fedf9c7de8e" + "WESTUS:20190806T203044Z:a2fa413b-670e-4e59-b78c-37fa2d62db1d" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet3879?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzODc5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet7026?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MDI2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb3097-3577-43ca-8710-1c65b9b3f70a" + "92f0775b-9151-479a-bc22-b631c3738bde" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -923,29 +923,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:15 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzAyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "96f30e18-22c1-47fd-b6e1-8f211699b3fc" + "2c15d260-7c92-4db2-98e4-9c41567714f0" ], "x-ms-correlation-request-id": [ - "96f30e18-22c1-47fd-b6e1-8f211699b3fc" + "2c15d260-7c92-4db2-98e4-9c41567714f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215916Z:96f30e18-22c1-47fd-b6e1-8f211699b3fc" + "WESTUS:20190806T203046Z:2c15d260-7c92-4db2-98e4-9c41567714f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -953,26 +950,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:30:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemczT1MxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzAyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOekF5TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -980,14 +980,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:30 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzAyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -996,13 +993,13 @@ "11999" ], "x-ms-request-id": [ - "3bd74aac-aefa-4283-b42c-e63c4cebe8fb" + "493c7108-24f8-47fa-94f2-8c5b6819791a" ], "x-ms-correlation-request-id": [ - "3bd74aac-aefa-4283-b42c-e63c4cebe8fb" + "493c7108-24f8-47fa-94f2-8c5b6819791a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215931Z:3bd74aac-aefa-4283-b42c-e63c4cebe8fb" + "WESTUS:20190806T203101Z:493c7108-24f8-47fa-94f2-8c5b6819791a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,26 +1007,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:31:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemczT1MxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzAyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOekF5TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1037,29 +1037,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:59:45 GMT" - ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "1193d74e-7dae-46a0-8233-f50872f34c79" + "78a9e81f-bd5e-45f9-8373-e71393ab6efc" ], "x-ms-correlation-request-id": [ - "1193d74e-7dae-46a0-8233-f50872f34c79" + "78a9e81f-bd5e-45f9-8373-e71393ab6efc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215946Z:1193d74e-7dae-46a0-8233-f50872f34c79" + "WESTUS:20190806T203116Z:78a9e81f-bd5e-45f9-8373-e71393ab6efc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1067,77 +1058,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:31:15 GMT" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemczT1MxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.25921.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 23 Apr 2019 22:00:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "64d68c40-0003-4e84-89b8-6f31fd912e67" - ], - "x-ms-correlation-request-id": [ - "64d68c40-0003-4e84-89b8-6f31fd912e67" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190423T220001Z:64d68c40-0003-4e84-89b8-6f31fd912e67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ], "Content-Length": [ "0" - ], - "Expires": [ - "-1" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzg3OS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemczT1MxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzAyNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOekF5TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1145,23 +1088,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 22:00:00 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "f78331e8-e2d2-4e1e-a9ea-17e69debd205" + "6b152284-a742-4270-861f-6842afc7b4da" ], "x-ms-correlation-request-id": [ - "f78331e8-e2d2-4e1e-a9ea-17e69debd205" + "6b152284-a742-4270-861f-6842afc7b4da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T220001Z:f78331e8-e2d2-4e1e-a9ea-17e69debd205" + "WESTUS:20190806T203116Z:6b152284-a742-4270-861f-6842afc7b4da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,11 +1109,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:31:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1182,11 +1125,11 @@ ], "Names": { "BatchAccountEndToEndAsync": [ - "azsmnet3879", - "azsmnet3968" + "azsmnet7026", + "azsmnet358" ] }, "Variables": { - "SubscriptionId": "0add380e-d91b-4aaf-aa97-814326a8ab7f" + "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.CertificateTests/BatchCertificateEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.CertificateTests/BatchCertificateEndToEndAsync.json index d8d2b74ca4ae..2b1c0c974829 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.CertificateTests/BatchCertificateEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.CertificateTests/BatchCertificateEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5d394ce-b498-4a65-a048-a7a59f7a4808" + "baf18f72-c5d3-40a2-82ad-c5c9e81941f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:00 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "c5f0bec1-a0ff-4b65-a657-b02d8f96c011" + "0daad967-1eaf-4a32-b491-49192ed732da" ], "x-ms-correlation-request-id": [ - "c5f0bec1-a0ff-4b65-a657-b02d8f96c011" + "0daad967-1eaf-4a32-b491-49192ed732da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214001Z:c5f0bec1-a0ff-4b65-a657-b02d8f96c011" + "WESTUS:20190806T215530Z:0daad967-1eaf-4a32-b491-49192ed732da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3859" + "Date": [ + "Tue, 06 Aug 2019 21:55:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4272" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet3712?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzEyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet518?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a906272-3bbc-4463-8454-92b65e105bcd" + "37c78828-96a3-49e9-87cf-bd0fa28dfc6f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:01 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "d893f7ba-7f7c-442c-a80c-be9a86ead956" + "7d2fa083-bcf7-493d-a36b-6b41ae9b3912" ], "x-ms-correlation-request-id": [ - "d893f7ba-7f7c-442c-a80c-be9a86ead956" + "7d2fa083-bcf7-493d-a36b-6b41ae9b3912" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214002Z:d893f7ba-7f7c-442c-a80c-be9a86ead956" + "WESTUS:20190806T215532Z:7d2fa083-bcf7-493d-a36b-6b41ae9b3912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 21:55:31 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712\",\r\n \"name\": \"azsmnet3712\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518\",\r\n \"name\": \"azsmnet518\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NT9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc235d5c-7c38-41d7-99c5-e7d6859a60b5" + "de2e63bd-3e3d-432a-8fea-b3a1d2e398ff" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -155,23 +155,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/operationResults/87732519-e152-4bfd-b353-88b98a673e85?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/operationResults/a897c71b-18c0-45cc-8feb-550bd3872a11?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "87732519-e152-4bfd-b353-88b98a673e85" + "a897c71b-18c0-45cc-8feb-550bd3872a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -179,35 +173,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "7b426c0d-3f56-4293-aaf1-5aed763e357a" + "4192d9f9-21d6-4d71-a420-8ef4637f9611" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214004Z:7b426c0d-3f56-4293-aaf1-5aed763e357a" + "WESTUS:20190806T215534Z:4192d9f9-21d6-4d71-a420-8ef4637f9611" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:55:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/operationResults/87732519-e152-4bfd-b353-88b98a673e85?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9vcGVyYXRpb25SZXN1bHRzLzg3NzMyNTE5LWUxNTItNGJmZC1iMzUzLTg4Yjk4YTY3M2U4NT9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/operationResults/a897c71b-18c0-45cc-8feb-550bd3872a11?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L29wZXJhdGlvblJlc3VsdHMvYTg5N2M3MWItMThjMC00NWNjLThmZWItNTUwYmQzODcyYTExP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -215,23 +215,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C83448301027\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AB8D7D0337E\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "f1573a05-3b0d-43ba-9ac5-e0b272415d95" + "94944c3d-113f-4ae8-ac95-238ea2da3357" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,14 +233,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "997820a5-7870-41cf-85b4-5b49ea642a31" + "34835502-aa5d-4275-9ce4-b9348f501773" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214019Z:997820a5-7870-41cf-85b4-5b49ea642a31" + "WESTUS:20190806T215549Z:34835502-aa5d-4275-9ce4-b9348f501773" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:48 GMT" ], "Content-Length": [ - "506" + "1847" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,28 +255,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:40:19 GMT" + "Tue, 06 Aug 2019 21:55:49 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755\",\r\n \"name\": \"azsmnet8755\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8755.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164\",\r\n \"name\": \"azsmnet5164\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet5164.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "453810b5-24e6-4ec7-9923-6c87262c8694" + "9db719e2-7740-4a3d-b569-d8b121be9f11" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -290,23 +290,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83448BCBD67\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AB8D803FF7A\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "773d6b04-5256-4802-8933-97fd123998c9" + "61b0c082-48b2-4eab-b497-3184bcb63766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -314,14 +308,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "40d60f33-dd98-41a3-bca9-b294d36b2ce3" + "e442daf1-46b1-4397-91a6-1d8fb2bd30cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214020Z:40d60f33-dd98-41a3-bca9-b294d36b2ce3" + "WESTUS:20190806T215550Z:e442daf1-46b1-4397-91a6-1d8fb2bd30cf" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:50 GMT" ], "Content-Length": [ - "1146" + "1145" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,28 +330,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:40:20 GMT" + "Tue, 06 Aug 2019 21:55:49 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D6C83448BCBD67\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"SHA1\",\r\n \"thumbprint\": \"CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:40:20.3699836Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D71AB8D803FF7A\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T21:55:49.6534045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60caea42-daa7-466d-b6dd-e52a556b16eb" + "4701ca36-394c-48ee-bead-b44dfaf86073" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -359,20 +359,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "7a46cbd9-86b1-4984-9b45-3ec511901927" + "3e612dd1-a706-45f5-9edf-1e1c5598a717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -380,14 +374,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "1cc5c858-be02-4cd0-be04-c5a412de59b4" + "eb7bc556-4af3-4979-b528-ba8d5517edd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214020Z:1cc5c858-be02-4cd0-be04-c5a412de59b4" + "WESTUS:20190806T215550Z:eb7bc556-4af3-4979-b528-ba8d5517edd2" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:50 GMT" ], "Content-Length": [ - "1158" + "1157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,25 +396,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D6C83448BCBD67\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"SHA1\",\r\n \"thumbprint\": \"CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:40:20.3699836Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D71AB8D803FF7A\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T21:55:49.6534045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e75c474-c04f-4cb1-96ed-fa2178e5fcf6" + "a4b2f675-5acb-496b-bc9a-0f4e091cd102" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -422,23 +422,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83448BCBD67\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AB8D803FF7A\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "8599784b-cb95-4072-8359-837d61c1064f" + "4cc4b67e-c3a7-4401-9b8b-d14dd1ee7cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,14 +440,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "a1a1b2d5-348f-437f-942b-de2d9735736d" + "e3732ed2-0f0a-4ab1-80d8-7549e5b6ddc3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214021Z:a1a1b2d5-348f-437f-942b-de2d9735736d" + "WESTUS:20190806T215550Z:e3732ed2-0f0a-4ab1-80d8-7549e5b6ddc3" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:50 GMT" ], "Content-Length": [ - "1146" + "1145" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,28 +462,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:40:20 GMT" + "Tue, 06 Aug 2019 21:55:49 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D6C83448BCBD67\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"SHA1\",\r\n \"thumbprint\": \"CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:40:20.3699836Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D71AB8D803FF7A\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T21:55:49.6534045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2a7db73-631b-4159-91f7-8fb99bc46abd" + "0b8bae4d-d9b5-437c-ad9b-3499a39ad771" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -491,20 +491,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-request-id": [ - "cb74c561-6982-434d-b4fc-0a9990021010" + "5b3ffc5e-b78b-4d14-9caa-f5021e232e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -512,11 +506,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "0d9f6c85-6e4a-4121-a593-315bd52e8a11" + "e7b3538c-83b7-4918-979b-4e6d74f66fb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214138Z:0d9f6c85-6e4a-4121-a593-315bd52e8a11" + "WESTUS:20190806T215708Z:e7b3538c-83b7-4918-979b-4e6d74f66fb1" + ], + "Date": [ + "Tue, 06 Aug 2019 21:57:07 GMT" ], "Content-Length": [ "201" @@ -528,25 +528,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:cb74c561-6982-434d-b4fc-0a9990021010\\nTime:2019-04-23T21:41:38.2153896Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:5b3ffc5e-b78b-4d14-9caa-f5021e232e59\\nTime:2019-08-06T21:57:07.9728492Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10034469-081b-43c2-a3ed-94b3f281595e" + "7b1c2efb-7a10-43eb-ba09-3246a39816a5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -560,23 +560,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83448BCBD67\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AB8D803FF7A\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "759b3197-ed94-4c3d-b474-b79f8f0c7dcd" + "4f441f80-e40f-4423-9df6-7f5f482fe579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,14 +578,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "1aa92631-a11b-407d-8b52-247d0162ad1c" + "80b81c90-8063-44ad-9261-ba926ed45466" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214021Z:1aa92631-a11b-407d-8b52-247d0162ad1c" + "WESTUS:20190806T215551Z:80b81c90-8063-44ad-9261-ba926ed45466" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:50 GMT" ], "Content-Length": [ - "1146" + "1145" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,28 +600,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:40:20 GMT" + "Tue, 06 Aug 2019 21:55:49 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D6C83448BCBD67\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"SHA1\",\r\n \"thumbprint\": \"CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:40:20.3699836Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D71AB8D803FF7A\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T21:55:49.6534045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjcvY2FuY2VsRGVsZXRlP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aafdd609-2cbb-45ae-bc61-57f5a96e9edf" + "c1a1c5db-4394-4fcd-91dd-a5b66ec7f0b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -629,23 +629,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83448BCBD67\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AB8D803FF7A\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "cf889e12-2e09-4764-ab84-2f9edbd7d48c" + "97667178-e3d8-4854-839b-c8fc32caffc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -653,14 +647,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "cac583a5-f38e-4104-bdd4-7e17704602b0" + "1e7366b4-6d93-4335-8096-ee1b3a43f13a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214021Z:cac583a5-f38e-4104-bdd4-7e17704602b0" + "WESTUS:20190806T215551Z:1e7366b4-6d93-4335-8096-ee1b3a43f13a" + ], + "Date": [ + "Tue, 06 Aug 2019 21:55:50 GMT" ], "Content-Length": [ - "1146" + "1145" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,28 +669,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:40:20 GMT" + "Tue, 06 Aug 2019 21:55:49 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D6C83448BCBD67\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"SHA1\",\r\n \"thumbprint\": \"CFF2AB63C8C955AAF71989EFA641B906558D9FB7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:40:20.3699836Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D71AB8D803FF7A\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T21:55:49.6534045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificates/SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZXMvU0hBMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "167ecdf2-5bd9-4375-8a6d-02805417a975" + "712cef5d-88a2-459b-bef3-315fc41cf001" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -698,23 +698,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:21 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D6C83449BDD57C?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D71AB8D92894FC?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "385f317a-2830-4b5c-a348-53922452b38b" + "b32b1bab-497a-4e99-b665-6e4b2eb3b327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,35 +716,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "ac2ec21b-b9f9-465d-b7a2-f086dc6ce452" + "97b465e8-8c13-4421-94f2-b4596758d2ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214022Z:ac2ec21b-b9f9-465d-b7a2-f086dc6ce452" + "WESTUS:20190806T215551Z:97b465e8-8c13-4421-94f2-b4596758d2ee" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:55:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D6C83449BDD57C?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThENkM4MzQ0OUJERDU3Qz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D71AB8D92894FC?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOEQ3MUFCOEQ5Mjg5NEZDP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -758,23 +758,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:36 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ec461436-67fd-4e22-96fb-65a326cacf1d" + "36dbdab3-5467-4b86-b9f4-dab9a7a211b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -782,35 +776,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "fdc99774-3e7c-4c62-92bb-5840343c1e23" + "9fb05d5a-3f85-47f7-8dec-5d25f97d2b6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214037Z:fdc99774-3e7c-4c62-92bb-5840343c1e23" + "WESTUS:20190806T215606Z:9fb05d5a-3f85-47f7-8dec-5d25f97d2b6e" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:56:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkNmM4MzQ0OWJkZDU3Yz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3MWFiOGQ5Mjg5NGZjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -818,23 +818,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1cd5dd68-79ca-415c-af4b-fc18c3b6a721" + "0edd9272-586f-4105-9729-4ad7405a7480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,35 +836,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "34b415c8-6508-434d-87e9-cafd81310e0c" + "1bdf4cba-9d12-4bb1-95b0-6d7f1410c568" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214052Z:34b415c8-6508-434d-87e9-cafd81310e0c" + "WESTUS:20190806T215622Z:1bdf4cba-9d12-4bb1-95b0-6d7f1410c568" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:56:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkNmM4MzQ0OWJkZDU3Yz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3MWFiOGQ5Mjg5NGZjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -878,23 +878,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3099e8e6-02be-486c-b3e9-b3be091b054b" + "69d38263-ec16-4f3e-8e25-a5f84913355b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -905,32 +899,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "5a1ded28-fc3f-41de-b581-b0f52fdc102a" + "cf240936-a815-4dac-8842-306b2f138a86" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214107Z:5a1ded28-fc3f-41de-b581-b0f52fdc102a" + "WESTUS:20190806T215637Z:cf240936-a815-4dac-8842-306b2f138a86" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:56:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkNmM4MzQ0OWJkZDU3Yz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3MWFiOGQ5Mjg5NGZjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -938,23 +938,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:22 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "69a72ca8-bba0-4df1-9f50-665bdbe41f72" + "869343eb-85a6-40fa-bfb5-751e6b415e46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,35 +956,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "daae8d36-b5e0-49c5-a476-9cacbe97e212" + "a3495588-cf2b-49b9-ab2f-504000fb7b7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214122Z:daae8d36-b5e0-49c5-a476-9cacbe97e212" + "WESTUS:20190806T215652Z:a3495588-cf2b-49b9-ab2f-504000fb7b7c" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:56:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkNmM4MzQ0OWJkZDU3Yz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3MWFiOGQ5Mjg5NGZjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -998,17 +998,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bc886091-5637-4675-8b67-9fa0997d53df" + "fb5744ff-5d62-4295-98ae-920f470e1b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1016,35 +1010,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "63aeb6f5-2ce3-448c-b8cb-ba8e86ca31e5" + "e934432e-ba44-4935-b8e1-8b71881dc1dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214138Z:63aeb6f5-2ce3-448c-b8cb-ba8e86ca31e5" + "WESTUS:20190806T215707Z:e934432e-ba44-4935-b8e1-8b71881dc1dd" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d6c83449bdd57c?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkNmM4MzQ0OWJkZDU3Yz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d71ab8d92894fc?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3MWFiOGQ5Mjg5NGZjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1052,17 +1052,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8346739d-2401-4a93-ac17-3513cf0fa9f5" + "a4f1a3f8-3f04-4d6f-a68b-38b3b2fbce36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,41 +1064,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "ef3899bc-5870-4070-bdce-54e5935c7c05" + "7e7c0f79-3712-48ab-81dc-3e934b0559a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214138Z:ef3899bc-5870-4070-bdce-54e5935c7c05" + "WESTUS:20190806T215707Z:7e7c0f79-3712-48ab-81dc-3e934b0559a7" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet3712/providers/Microsoft.Batch/batchAccounts/azsmnet8755?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODc1NT9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet518/providers/Microsoft.Batch/batchAccounts/azsmnet5164?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ1MTY0P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52f86948-ddee-49ed-8e1e-f305196336c8" + "a025c095-6e88-46f8-a1ba-23b1a4ce1e65" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1112,23 +1112,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bdb67e85-d3ff-4da0-b4da-f4253ae16bbc" + "d9850446-132e-4e11-ad77-dc9cae8df300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,35 +1130,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "7d4577ab-d03f-4913-84a6-0f1dcdaef726" + "499c99c5-88b8-42be-9db9-a95419310f65" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214138Z:7d4577ab-d03f-4913-84a6-0f1dcdaef726" + "WESTUS:20190806T215708Z:499c99c5-88b8-42be-9db9-a95419310f65" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1172,23 +1172,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:41:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7f0c0be7-ed71-486d-8364-5ff9c07e317b" + "5f05f9c2-919e-4620-88f0-48cf10d62027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1196,35 +1190,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "6ac76b72-25be-4b14-bf0a-e9a757d8953f" + "1829557f-f8ce-460b-9c95-9ad08fd89b58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214153Z:6ac76b72-25be-4b14-bf0a-e9a757d8953f" + "WESTUS:20190806T215723Z:1829557f-f8ce-460b-9c95-9ad08fd89b58" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1232,23 +1232,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:42:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8cffea58-e2ac-40e0-b762-9bc96df0e67c" + "4a7e465e-2e83-4b8f-807e-941b6a9bacff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1256,35 +1250,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "1957a97f-0d75-4713-b495-cfd631dd62c7" + "f50a234a-ebcf-4659-9f24-c8f31c736dbd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214209Z:1957a97f-0d75-4713-b495-cfd631dd62c7" + "WESTUS:20190806T215738Z:f50a234a-ebcf-4659-9f24-c8f31c736dbd" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1292,23 +1292,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:42:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "813b88bb-27a3-4af6-91fb-96fa26e51357" + "c9c09452-0c90-4be7-9d0a-75033e781d2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1319,32 +1313,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "aa68e771-3350-4d04-9f01-e4bb8e19c4b6" + "5ec1383e-95e6-4052-91c7-8855de141dc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214224Z:aa68e771-3350-4d04-9f01-e4bb8e19c4b6" + "WESTUS:20190806T215754Z:5ec1383e-95e6-4052-91c7-8855de141dc4" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:57:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1352,23 +1352,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:42:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b6b8789c-27e9-415a-9f9b-8cc7d29aa295" + "0d9d8374-6cf2-4b1c-b461-63e5aec39a3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1376,35 +1370,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "5c891e48-7c7a-400c-bb7d-9e4672c78090" + "82573d27-f640-4122-88f2-7410d72c1b28" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214239Z:5c891e48-7c7a-400c-bb7d-9e4672c78090" + "WESTUS:20190806T215809Z:82573d27-f640-4122-88f2-7410d72c1b28" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:58:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1412,23 +1412,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:42:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "fbe83894-7032-4c6f-9372-d9dd0b81e31a" + "d795482d-c60f-45b0-a0b2-60e9fd4025ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,35 +1430,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "6ef851eb-5575-4809-8b82-9786ec282683" + "db2048a3-8531-4454-a932-0bef5eebb263" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214254Z:6ef851eb-5575-4809-8b82-9786ec282683" + "WESTUS:20190806T215824Z:db2048a3-8531-4454-a932-0bef5eebb263" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:58:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1472,23 +1472,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:43:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "91ea0a9f-905c-4e49-bda7-7f2ed72b0fb2" + "35545c64-cfda-4de0-8b21-e0715ade2b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1496,35 +1490,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "ae9bf9ee-e713-4632-89b5-8ab558210ec6" + "91b2e5b9-9ec5-4a41-bceb-6f2174271429" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214309Z:ae9bf9ee-e713-4632-89b5-8ab558210ec6" + "WESTUS:20190806T215839Z:91b2e5b9-9ec5-4a41-bceb-6f2174271429" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:58:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1532,23 +1532,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:43:24 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a2817b48-bc8e-4e91-b76d-744ea200e842" + "0a807139-9c9f-4175-9587-26e4714506c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1556,35 +1550,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "20b035d0-384f-482a-b487-36d2408fdd92" + "09d699ee-539e-49b0-96ba-a74671af883a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214324Z:20b035d0-384f-482a-b487-36d2408fdd92" + "WESTUS:20190806T215854Z:09d699ee-539e-49b0-96ba-a74671af883a" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:58:54 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1592,23 +1592,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:43:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7e7afe63-6c95-4c5a-8f2d-1c161308b2ef" + "eed61aec-f709-464a-a055-8501fbba524b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1619,32 +1613,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "18f3ab71-fe24-42bf-bcae-8e5a7ff72baa" + "b3bfa5a6-a7c8-4324-b3cd-76b1fad8a9a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214339Z:18f3ab71-fe24-42bf-bcae-8e5a7ff72baa" + "WESTUS:20190806T215909Z:b3bfa5a6-a7c8-4324-b3cd-76b1fad8a9a4" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:59:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1652,23 +1652,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:43:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "50ee89a0-be2a-45d1-bd9e-1fd28471730d" + "2fcde4bd-cd71-4183-9e9d-7fe40f7dd867" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1676,35 +1670,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "af7e2f1c-34bd-40cb-abdf-46c21cf21920" + "b89b03c5-851a-41d4-a9a1-61559d7b10c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214355Z:af7e2f1c-34bd-40cb-abdf-46c21cf21920" + "WESTUS:20190806T215925Z:b89b03c5-851a-41d4-a9a1-61559d7b10c3" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:59:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1712,23 +1712,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:44:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "db9eb12f-8c8a-443b-96e1-a8858ee5648b" + "1b2adae5-f058-4b87-8674-653586cc7e8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,35 +1730,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "002938e3-e014-426c-aaca-8c6566b322d2" + "517f01a1-af15-445d-9a0d-3f1df4fc0a76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214410Z:002938e3-e014-426c-aaca-8c6566b322d2" + "WESTUS:20190806T215940Z:517f01a1-af15-445d-9a0d-3f1df4fc0a76" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:59:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1772,23 +1772,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:44:24 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e3965069-3a20-40fe-8a44-3e75e1274e39" + "1af2d0b0-ac02-4687-96c3-25c7e51333d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,35 +1790,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], "x-ms-correlation-request-id": [ - "3457cc35-1ddf-4369-b765-fd92553030cb" + "53689f38-dc3d-4514-920a-84e623873889" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214425Z:3457cc35-1ddf-4369-b765-fd92553030cb" + "WESTUS:20190806T215955Z:53689f38-dc3d-4514-920a-84e623873889" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 21:59:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1832,23 +1832,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:44:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c83d824c-ed5c-44f3-9e17-ebcb53746d5d" + "b1c2ec67-d753-423b-88db-57ea0247bc3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1856,35 +1850,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "23c7a15c-89a7-4696-b561-8f07008643f1" + "389c71e1-ecd4-4767-aae6-393c642aa2da" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214440Z:23c7a15c-89a7-4696-b561-8f07008643f1" + "WESTUS:20190806T220010Z:389c71e1-ecd4-4767-aae6-393c642aa2da" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:00:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1892,23 +1892,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:44:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "20d930cf-7cd1-4cc3-a2de-d77b5fbfc6b4" + "ef3bea70-05e2-4d8a-9ece-4e71db6a0472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1919,32 +1913,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "39939378-d729-4773-82ca-da4092bd2db4" + "4d630dd3-caf4-4dde-ba24-2eca264836e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214455Z:39939378-d729-4773-82ca-da4092bd2db4" + "WESTUS:20190806T220025Z:4d630dd3-caf4-4dde-ba24-2eca264836e0" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:00:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1952,23 +1952,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:45:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "20c311a4-d1bc-426c-804a-4ac28db9f37a" + "e3002e35-f6f4-4193-be2c-758d8f8321e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1976,35 +1970,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "x-ms-correlation-request-id": [ - "a67ce857-e15e-4bec-acc2-81d50c1b87fb" + "a140991f-dffd-4088-9a77-7791a3acedd6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214510Z:a67ce857-e15e-4bec-acc2-81d50c1b87fb" + "WESTUS:20190806T220040Z:a140991f-dffd-4088-9a77-7791a3acedd6" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:00:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2012,23 +2012,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:45:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "205e6ff3-27b8-453d-ad37-c7c81f5b90f4" + "ecbe3263-9aad-4bac-abb1-fbd6b470e8f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2036,35 +2030,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], "x-ms-correlation-request-id": [ - "0571e5ab-a844-4edc-8285-92e07977c7d4" + "70ec6070-3529-49b8-b442-dae0a241c6cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214525Z:0571e5ab-a844-4edc-8285-92e07977c7d4" + "WESTUS:20190806T220056Z:70ec6070-3529-49b8-b442-dae0a241c6cf" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:00:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2072,23 +2072,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:45:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3a675a9e-a1bf-4f58-9097-324114af794a" + "ed90d7dc-869d-41ff-abc8-50d81a549557" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2096,35 +2090,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "x-ms-correlation-request-id": [ - "d5d53236-4526-4af9-8bc3-781a1156e22b" + "fc049c22-1540-44fb-abcb-176f352c4da2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214540Z:d5d53236-4526-4af9-8bc3-781a1156e22b" + "WESTUS:20190806T220111Z:fc049c22-1540-44fb-abcb-176f352c4da2" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:01:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2132,23 +2132,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:45:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e5cb13a5-b72e-4cb3-be6a-8debaaaed34c" + "e4972903-f3b0-44ae-9ca9-cbd046a03714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2156,35 +2150,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], "x-ms-correlation-request-id": [ - "4de92ac5-9244-46a0-89cb-4dcb8c156f2c" + "cd1f0bf0-17f2-4f13-b67a-3aea5930bddb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214556Z:4de92ac5-9244-46a0-89cb-4dcb8c156f2c" + "WESTUS:20190806T220126Z:cd1f0bf0-17f2-4f13-b67a-3aea5930bddb" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:01:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2192,23 +2192,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:46:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "31eb9fc4-5b66-4a04-9d25-08b0068a571e" + "ff302d6d-78bf-41b1-8d15-084f576abd8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2219,32 +2213,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "bfcb4d09-7fdf-4290-99cd-71fa9cdf6941" + "b74d74dd-058c-4d42-a2c4-4330ec7e1f76" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214611Z:bfcb4d09-7fdf-4290-99cd-71fa9cdf6941" + "WESTUS:20190806T220141Z:b74d74dd-058c-4d42-a2c4-4330ec7e1f76" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:01:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2252,23 +2252,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:46:26 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "530a901e-8b1e-4aa9-abd3-f2102e9ee5ba" + "eb9841d5-bcad-415c-af4d-0d2f45f80551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2276,35 +2270,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], "x-ms-correlation-request-id": [ - "377e2517-49e7-4aff-ab40-ea67ad274fcf" + "1ee05571-c2b9-4280-93a9-2427d7ba937c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214626Z:377e2517-49e7-4aff-ab40-ea67ad274fcf" + "WESTUS:20190806T220156Z:1ee05571-c2b9-4280-93a9-2427d7ba937c" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:01:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2312,23 +2312,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:46:41 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "10953da4-60c7-449e-af46-68e868055f14" + "1abfcbd1-e08d-4f00-b9a9-b5bb779deb91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2336,35 +2330,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], "x-ms-correlation-request-id": [ - "9341453d-de7b-465b-915f-8379e73a17c9" + "28b695c1-5af0-4702-8f9f-093e5b45c585" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214641Z:9341453d-de7b-465b-915f-8379e73a17c9" + "WESTUS:20190806T220211Z:28b695c1-5af0-4702-8f9f-093e5b45c585" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:02:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2372,23 +2372,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:46:57 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "64d0f48e-0e92-42c4-86ee-35116719d804" + "a0ee4744-baf2-4778-beca-cc26bae1bc55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2396,35 +2390,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], "x-ms-correlation-request-id": [ - "e6c9cd48-fc9b-4441-a3b2-6159cbc717c7" + "c2d4e8d0-d873-426e-9f09-ab64c768cfc2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214657Z:e6c9cd48-fc9b-4441-a3b2-6159cbc717c7" + "WESTUS:20190806T220226Z:c2d4e8d0-d873-426e-9f09-ab64c768cfc2" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:02:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2432,23 +2432,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:11 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7ebe220b-1a22-4bd2-8226-a052103c7d0c" + "18e4c947-51f2-4f01-bb01-4f08ee898dfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2456,35 +2450,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], "x-ms-correlation-request-id": [ - "dc3de46d-4b38-4df6-9f21-344f0a423f44" + "80cd5f5a-0771-4e3d-87a9-9538bf318249" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214712Z:dc3de46d-4b38-4df6-9f21-344f0a423f44" + "WESTUS:20190806T220242Z:80cd5f5a-0771-4e3d-87a9-9538bf318249" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:02:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2492,23 +2492,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:26 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "51b450dc-dfd2-44af-a9f6-8b56d37e64d8" + "f65e433c-ccec-432d-b289-9a1c6b63b978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2519,32 +2513,38 @@ "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "e4260cfc-a960-4eb4-ae5f-91e717c2b5fd" + "0a527574-16ff-4eb0-9d3a-e3b4ef03da80" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214727Z:e4260cfc-a960-4eb4-ae5f-91e717c2b5fd" + "WESTUS:20190806T220257Z:0a527574-16ff-4eb0-9d3a-e3b4ef03da80" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:02:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2552,17 +2552,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6978a64c-cad5-4201-80ec-29c6d4b9f656" + "7f719523-4d84-4b25-b098-3b6b64a17023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2570,35 +2564,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], "x-ms-correlation-request-id": [ - "889623b6-339c-451b-a631-c3ea2103cb98" + "df1f68cc-6c39-46b0-9b7b-79027b84a970" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214742Z:889623b6-339c-451b-a631-c3ea2103cb98" + "WESTUS:20190806T220312Z:df1f68cc-6c39-46b0-9b7b-79027b84a970" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:03:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8755-bdb67e85-d3ff-4da0-b4da-f4253ae16bbc?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODc1NS1iZGI2N2U4NS1kM2ZmLTRkYTAtYjRkYS1mNDI1M2FlMTZiYmM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet5164-d9850446-132e-4e11-ad77-dc9cae8df300?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NTE2NC1kOTg1MDQ0Ni0xMzJlLTRlMTEtYWQ3Ny1kYzljYWU4ZGYzMDA/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2606,17 +2606,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8cc03bc0-1cb6-4d15-a2c3-bc13b2262693" + "13973ea1-f5f5-42f2-b4f1-9d8c682080ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2624,41 +2618,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], "x-ms-correlation-request-id": [ - "a93a36dc-ae17-4049-860a-56bd834e1bec" + "b66721c6-94d2-43df-88d8-c7f6196b9024" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214742Z:a93a36dc-ae17-4049-860a-56bd834e1bec" + "WESTUS:20190806T220312Z:b66721c6-94d2-43df-88d8-c7f6196b9024" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:03:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet3712?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzEyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet518?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7bfcfb4-d461-4726-8e12-f1c5b9c23204" + "b8c77a30-8ee1-4e2c-b299-d58bf655c5cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2666,14 +2666,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:43 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzcxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -2682,13 +2679,13 @@ "14999" ], "x-ms-request-id": [ - "b81826c2-6665-4cd8-ad12-c012cc1e4e58" + "a74773f0-825b-4422-bc34-421e337a4316" ], "x-ms-correlation-request-id": [ - "b81826c2-6665-4cd8-ad12-c012cc1e4e58" + "a74773f0-825b-4422-bc34-421e337a4316" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214744Z:b81826c2-6665-4cd8-ad12-c012cc1e4e58" + "WESTUS:20190806T220314Z:a74773f0-825b-4422-bc34-421e337a4316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2696,26 +2693,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:03:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzcxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemN4TWkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOVEU0TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2723,29 +2723,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:47:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzcxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "4899d579-e5b8-4fa6-b51c-4860cb32ea64" + "11e3491e-fa0d-4a23-9272-5e71207b95fe" ], "x-ms-correlation-request-id": [ - "4899d579-e5b8-4fa6-b51c-4860cb32ea64" + "11e3491e-fa0d-4a23-9272-5e71207b95fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214759Z:4899d579-e5b8-4fa6-b51c-4860cb32ea64" + "WESTUS:20190806T220329Z:11e3491e-fa0d-4a23-9272-5e71207b95fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2753,26 +2750,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:03:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzcxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemN4TWkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOVEU0TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2780,23 +2780,26 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:14 GMT" - ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "5b97d2ef-e8c4-46f3-99c5-efc5bcc32973" + "83aa9c25-1ef6-46eb-9103-fa27464cc00c" ], "x-ms-correlation-request-id": [ - "5b97d2ef-e8c4-46f3-99c5-efc5bcc32973" + "83aa9c25-1ef6-46eb-9103-fa27464cc00c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214815Z:5b97d2ef-e8c4-46f3-99c5-efc5bcc32973" + "WESTUS:20190806T220344Z:83aa9c25-1ef6-46eb-9103-fa27464cc00c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2804,26 +2807,80 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 22:03:44 GMT" + ], + "Expires": [ + "-1" + ], "Content-Length": [ "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOVEU0TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "c9cdd0d7-09f6-472c-b4f9-05aae14a09dc" + ], + "x-ms-correlation-request-id": [ + "c9cdd0d7-09f6-472c-b4f9-05aae14a09dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T220400Z:c9cdd0d7-09f6-472c-b4f9-05aae14a09dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 06 Aug 2019 22:03:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzcxMi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemN4TWkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNTE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOVEU0TFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2831,23 +2888,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:14 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "d33ff8a2-c220-4231-b90b-f08d19daa696" + "a5f0ffc5-355c-4c26-8926-0fa5972734ca" ], "x-ms-correlation-request-id": [ - "d33ff8a2-c220-4231-b90b-f08d19daa696" + "a5f0ffc5-355c-4c26-8926-0fa5972734ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214815Z:d33ff8a2-c220-4231-b90b-f08d19daa696" + "WESTUS:20190806T220400Z:a5f0ffc5-355c-4c26-8926-0fa5972734ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2855,11 +2909,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 22:03:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2868,11 +2925,11 @@ ], "Names": { "BatchCertificateEndToEndAsync": [ - "azsmnet3712", - "azsmnet8755" + "azsmnet518", + "azsmnet5164" ] }, "Variables": { - "SubscriptionId": "0add380e-d91b-4aaf-aa97-814326a8ab7f" + "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.LocationTests/GetLocationQuotasAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.LocationTests/GetLocationQuotasAsync.json index 14adb00d9e23..0490e983dff8 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.LocationTests/GetLocationQuotasAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.LocationTests/GetLocationQuotasAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa887ab5-14f9-4fa6-9d50-645c27412bbc" + "5ea0abbb-bd9b-4a34-9e7e-9a73f0826eb4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:39:59 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "3fa1961e-e30f-4764-b3ab-e62c952d9716" + "c5313c13-1e04-4f18-ae47-e1fea0486f9f" ], "x-ms-correlation-request-id": [ - "3fa1961e-e30f-4764-b3ab-e62c952d9716" + "c5313c13-1e04-4f18-ae47-e1fea0486f9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214000Z:3fa1961e-e30f-4764-b3ab-e62c952d9716" + "WESTUS:20190806T200308Z:c5313c13-1e04-4f18-ae47-e1fea0486f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3859" + "Date": [ + "Tue, 06 Aug 2019 20:03:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4272" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4813e30-e528-4802-bae4-5782de2c33e9" + "e37a3551-30d6-4bd0-81e2-7cf0a82d8f92" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -83,20 +83,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:40:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "0ea2bf62-37a7-4143-b618-f428b189bafc" + "8487d76f-f3fe-43ca-b38c-c7b3e834cd5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,11 +98,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "20baaf80-5d39-47dc-b8b3-6600f33cc19e" + "7986db05-0498-46ab-976c-9e654652cf7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214000Z:20baaf80-5d39-47dc-b8b3-6600f33cc19e" + "WESTUS:20190806T200309Z:7986db05-0498-46ab-976c-9e654652cf7a" + ], + "Date": [ + "Tue, 06 Aug 2019 20:03:08 GMT" ], "Content-Length": [ "18" @@ -126,6 +126,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0add380e-d91b-4aaf-aa97-814326a8ab7f" + "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.PoolTests/BatchPoolEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.PoolTests/BatchPoolEndToEndAsync.json index 93579814dcbf..a79d63357e42 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.PoolTests/BatchPoolEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/Batch.Tests.ScenarioTests.PoolTests/BatchPoolEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35da4176-4c00-4b58-9aaa-c56683b50c96" + "121cce1c-099c-4664-b24c-e32b8b825d21" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:15 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "a946824a-c781-4111-805d-b28aad6b6593" + "790e3476-0a6b-4c56-916f-1749dab2d736" ], "x-ms-correlation-request-id": [ - "a946824a-c781-4111-805d-b28aad6b6593" + "790e3476-0a6b-4c56-916f-1749dab2d736" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214815Z:a946824a-c781-4111-805d-b28aad6b6593" + "WESTUS:20190806T200611Z:790e3476-0a6b-4c56-916f-1749dab2d736" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "3859" + "Date": [ + "Tue, 06 Aug 2019 20:06:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4272" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet4204?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MjA0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet164?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2623ab-5463-41f0-9c90-1ce4a23b4707" + "6c8b51fd-f16e-491f-b172-c5dfbcbf8c91" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:16 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "99a835a3-54f9-4475-8752-9924493e36ae" + "48aa4207-c529-47bc-9ea5-dd85e7ec418c" ], "x-ms-correlation-request-id": [ - "99a835a3-54f9-4475-8752-9924493e36ae" + "48aa4207-c529-47bc-9ea5-dd85e7ec418c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214816Z:99a835a3-54f9-4475-8752-9924493e36ae" + "WESTUS:20190806T200613Z:48aa4207-c529-47bc-9ea5-dd85e7ec418c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 20:06:12 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204\",\r\n \"name\": \"azsmnet4204\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164\",\r\n \"name\": \"azsmnet164\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "48225a81-fbf2-4834-a12f-790bc4a35eb8" + "c2afb156-3d32-4f80-9425-8a9aa5aceded" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -155,23 +155,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:18 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/operationResults/a1a6be52-5a7e-4afe-b3db-f4a1d81794ba?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/operationResults/895665ec-d55d-49b6-9604-46e6f96d87b9?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a1a6be52-5a7e-4afe-b3db-f4a1d81794ba" + "895665ec-d55d-49b6-9604-46e6f96d87b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -179,35 +173,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2be60340-9c6f-42d9-a9a9-2c6ad1946042" + "56da1561-5ccc-456d-952a-aacb757c4c2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214819Z:2be60340-9c6f-42d9-a9a9-2c6ad1946042" + "WESTUS:20190806T200615Z:56da1561-5ccc-456d-952a-aacb757c4c2d" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:06:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/operationResults/a1a6be52-5a7e-4afe-b3db-f4a1d81794ba?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL29wZXJhdGlvblJlc3VsdHMvYTFhNmJlNTItNWE3ZS00YWZlLWIzZGItZjRhMWQ4MTc5NGJhP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/operationResults/895665ec-d55d-49b6-9604-46e6f96d87b9?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L29wZXJhdGlvblJlc3VsdHMvODk1NjY1ZWMtZDU1ZC00OWI2LTk2MDQtNDZlNmY5NmQ4N2I5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -215,23 +215,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "\"0x8D6C8356F10AE28\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "\"0x8D71AA9928E40D0\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "8678d8d8-d5bd-4089-acda-804e7976f8d5" + "1412a95e-4bc3-48ac-9c86-087a41952ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,14 +233,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "44a0719a-ebf0-486d-a5c4-1000d5727dce" + "a2d2dd72-e983-4691-be38-ab292a16b2fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214834Z:44a0719a-ebf0-486d-a5c4-1000d5727dce" + "WESTUS:20190806T200630Z:a2d2dd72-e983-4691-be38-ab292a16b2fd" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:29 GMT" ], "Content-Length": [ - "503" + "1847" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,28 +255,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:34 GMT" + "Tue, 06 Aug 2019 20:06:30 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920\",\r\n \"name\": \"azsmnet920\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet920.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937\",\r\n \"name\": \"azsmnet1937\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet1937.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_paas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_paas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"small\",\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"password\": \"randompasswd\"\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"filePath\": \"filename.txt\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0874f2c-a85c-40a0-8d84-9e51b6625d3f" + "4be10d57-710c-4d4c-9d51-82cf6f068017" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -290,23 +290,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C8356FCFEFED\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AA992D4464B\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "f48148ef-c37e-4c37-905b-460d6228f97a" + "27c02202-e156-4ee4-a7e2-125a2f9c1da8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -314,14 +308,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "dfea7b9d-04a1-45fc-8d60-5ab94c03b325" + "a9ed1f15-224e-4d04-aedf-b9f7a1f611a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214835Z:dfea7b9d-04a1-45fc-8d60-5ab94c03b325" + "WESTUS:20190806T200631Z:a9ed1f15-224e-4d04-aedf-b9f7a1f611a3" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:31 GMT" ], "Content-Length": [ - "1510" + "1524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,28 +330,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:35 GMT" + "Tue, 06 Aug 2019 20:06:31 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C8356FCFEFED\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.4224109Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA992D4464B\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"creationTime\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:31.1394891Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"Standard_A1\",\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2fce19bc-0119-41e1-b631-b657eeead98e" + "bea34b77-9a53-4761-9ff4-e6995257de79" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ], "Content-Type": [ @@ -365,23 +365,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83570193436\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AA9936E6ADA\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "f0fdc427-d9a4-480e-a78f-fd777131fb21" + "5351db15-2216-4518-955a-c93bed29839c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,11 +383,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "7da735b4-82a3-4578-b3e3-06f5851d7f97" + "77ce6bab-7ee2-45ed-a334-e508975c0b58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214835Z:7da735b4-82a3-4578-b3e3-06f5851d7f97" + "WESTUS:20190806T200632Z:77ce6bab-7ee2-45ed-a334-e508975c0b58" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:31 GMT" ], "Content-Length": [ "1293" @@ -405,28 +405,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:35 GMT" + "Tue, 06 Aug 2019 20:06:32 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C83570193436\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.9025718Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA9936E6ADA\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"creationTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:32.1496794Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7fa0fbd-00a0-4073-871d-8f8c771a0fe6" + "44635f04-0a29-446e-84f8-57fe0cdc5eb6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -434,20 +434,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "d46406b5-bdf3-4acc-a86b-67fcda0a605f" + "6fb388f6-00ea-47c4-bde6-532e9e8df9fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,14 +449,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "fadcf43c-b23a-4124-afda-ad390ee25af0" + "335776d1-6003-46ad-b015-9733db618a79" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214836Z:fadcf43c-b23a-4124-afda-ad390ee25af0" + "WESTUS:20190806T200632Z:335776d1-6003-46ad-b015-9733db618a79" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:31 GMT" ], "Content-Length": [ - "2812" + "2826" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,25 +471,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C83570193436\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:36.0095448Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.9025718Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C8356FCFEFED\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.4224109Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:35.5304069Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": false\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.4224109Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA9936E6ADA\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"creationTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:32.2447366Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:32.1496794Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA992D4464B\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"creationTime\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:31.1394891Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:31.2315183Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:31.1394891Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4b12b83-05ce-425b-a611-67bc0233a4cb" + "093659c9-0732-4ecb-970f-ca544fc66e32" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -497,23 +497,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83570193436\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AA9936E6ADA\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "5b945f5b-9daf-4af8-900e-70614a2a506b" + "2299cc85-047a-4fcc-970f-a98821b2d802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,11 +515,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "a4e9c863-a4d9-4dae-a22d-0387e25ae53d" + "cdae89ad-4e02-4bb7-b1ef-b762e8a49e22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214836Z:a4e9c863-a4d9-4dae-a22d-0387e25ae53d" + "WESTUS:20190806T200632Z:cdae89ad-4e02-4bb7-b1ef-b762e8a49e22" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:31 GMT" ], "Content-Length": [ "1291" @@ -537,28 +537,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:35 GMT" + "Tue, 06 Aug 2019 20:06:32 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C83570193436\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:36.0095448Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.9025718Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA9936E6ADA\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"creationTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:32.2447366Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:32.1496794Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool/stopResize?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfaWFhc19wb29sL3N0b3BSZXNpemU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool/stopResize?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfaWFhc19wb29sL3N0b3BSZXNpemU/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4db7bed-12f5-4d87-a154-718ec9ab25d9" + "6502ad58-68fc-4b02-bb73-8fe65daf797d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -566,23 +566,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83570193436\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AA9936E6ADA\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "67e2ca9f-c12c-4f31-89df-bdf7c53a1798" + "17f9cbaf-1fbb-4cc6-a707-ce4f33ab319e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,11 +584,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "6b7611c9-2eab-42db-91ad-7350d92a1de5" + "56d840af-cfcf-463d-a12f-45d9da1ae9e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214836Z:6b7611c9-2eab-42db-91ad-7350d92a1de5" + "WESTUS:20190806T200632Z:56d840af-cfcf-463d-a12f-45d9da1ae9e2" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:31 GMT" ], "Content-Length": [ "1291" @@ -606,28 +606,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:35 GMT" + "Tue, 06 Aug 2019 20:06:32 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C83570193436\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:36.0095448Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.9025718Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA9936E6ADA\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"creationTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:32.2447366Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:32.1496794Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool/disableAutoScale?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfaWFhc19wb29sL2Rpc2FibGVBdXRvU2NhbGU/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool/disableAutoScale?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfaWFhc19wb29sL2Rpc2FibGVBdXRvU2NhbGU/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36c19e14-40e5-48e0-a6d0-461bda34265f" + "cd7db123-41ca-448a-90c7-834663adf9d2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -635,23 +635,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6C83570704C73\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "W/\"0x8D71AA99434BECB\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "9c896789-783e-4b6f-a447-cd327eec9b80" + "da7953a3-b859-4876-a0bd-346a7ec01764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -659,11 +653,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "5d9640ed-56c0-4c29-9f48-d808b5b8b3b0" + "f541d014-4101-47d1-aedc-67dea0f4121b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214836Z:5d9640ed-56c0-4c29-9f48-d808b5b8b3b0" + "WESTUS:20190806T200633Z:f541d014-4101-47d1-aedc-67dea0f4121b" + ], + "Date": [ + "Tue, 06 Aug 2019 20:06:32 GMT" ], "Content-Length": [ "1291" @@ -675,28 +675,28 @@ "-1" ], "Last-Modified": [ - "Tue, 23 Apr 2019 21:48:36 GMT" + "Tue, 06 Aug 2019 20:06:33 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D6C83570704C73\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-04-23T21:48:36.4733555Z\",\r\n \"creationTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-04-23T21:48:35.9025718Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-04-23T21:48:36.0095448Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-04-23T21:48:35.9025718Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D71AA99434BECB\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2019-08-06T20:06:33.4494411Z\",\r\n \"creationTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2019-08-06T20:06:32.1496794Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2019-08-06T20:06:32.2447366Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2019-08-06T20:06:32.1496794Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_paas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_paas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfcc1ba2-0047-4047-bcf7-c499887dd5aa" + "b425051f-4890-4cbb-bdef-55278f52a8db" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -704,23 +704,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:36 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_paas_pool?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_paas_pool?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a1f9b56e-047d-4f47-bd05-6982483dc37e" + "85ac6c2d-9033-42ba-9784-e7d563aca39e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -728,35 +722,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a2b6cc8d-c4f1-4262-bf00-547283e9a8f0" + "00e8a447-f293-4c74-9704-343dc98ca388" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214836Z:a2b6cc8d-c4f1-4262-bf00-547283e9a8f0" + "WESTUS:20190806T200633Z:00e8a447-f293-4c74-9704-343dc98ca388" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:06:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_paas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_paas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -764,17 +764,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "87f64772-f83c-4f65-a7f5-ccb2ce060d14" + "5f012c70-f2ea-4cb0-ac33-cc051e9dae35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -782,35 +776,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "ab294441-d018-497f-80cd-01036fc13c5d" + "935377c8-70d2-4890-834d-f162bfb03f51" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214851Z:ab294441-d018-497f-80cd-01036fc13c5d" + "WESTUS:20190806T200648Z:935377c8-70d2-4890-834d-f162bfb03f51" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:06:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_paas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_paas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -818,17 +818,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "da1fa15f-14c8-4bbc-afd2-510c35c278aa" + "6b5b23ce-ab28-4bcc-a3c3-9641cb5b162e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -836,41 +830,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "1f23c451-477b-461e-a507-81174afdbc5c" + "250b2801-e511-47d9-bbc2-f3327a09531c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214851Z:1f23c451-477b-461e-a507-81174afdbc5c" + "WESTUS:20190806T200649Z:250b2801-e511-47d9-bbc2-f3327a09531c" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:06:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_iaas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_iaas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfaWFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5be247db-3e00-44e3-b251-cff3f2bd0832" + "757c7727-08c7-4bcd-8086-b7d04004a122" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -878,23 +878,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:48:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_iaas_pool?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_iaas_pool?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6f4623b9-9cb7-41af-abc5-a6b034ab4236" + "4ccd4d65-e312-478b-97d6-f89fec0bf8a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -902,35 +896,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "6a7f4e65-6ee3-43d2-a48e-9d7bc75fb480" + "4b65530f-6d39-4b0c-ac47-ae165540d5a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214851Z:6a7f4e65-6ee3-43d2-a48e-9d7bc75fb480" + "WESTUS:20190806T200649Z:4b65530f-6d39-4b0c-ac47-ae165540d5a0" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:06:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_iaas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_iaas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -938,17 +938,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8014e2ed-fad6-491d-b231-73048ebc71bb" + "86a3f498-7841-4fc1-827b-e152c03c587e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -956,35 +950,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "fb85fb77-b31b-4fa2-a8f0-a031e8274526" + "e900c7e2-8a48-4552-b127-5e136dfe728b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214907Z:fb85fb77-b31b-4fa2-a8f0-a031e8274526" + "WESTUS:20190806T200704Z:e900c7e2-8a48-4552-b127-5e136dfe728b" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/poolOperationResults/delete-test_iaas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/poolOperationResults/delete-test_iaas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xPcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS10ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDE5LTA4LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -992,17 +992,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ac6849e5-6a60-438a-9e92-cd07be114b24" + "7098971f-938c-48bd-b348-cf5a71142908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,41 +1004,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "c85f010b-1879-44fe-969d-69ee56e84978" + "f62b303b-da1e-40bf-8e75-a5fd5d563ba5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214907Z:c85f010b-1879-44fe-969d-69ee56e84978" + "WESTUS:20190806T200704Z:f62b303b-da1e-40bf-8e75-a5fd5d563ba5" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920/pools/test_paas_pool?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwL3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937/pools/test_paas_pool?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3L3Bvb2xzL3Rlc3RfcGFhc19wb29sP2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a34fa9-5330-451e-a945-6f7327488b07" + "58ed92eb-c52b-4857-97b5-74175470c715" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1052,20 +1052,14 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "b8c67a63-be05-4c1e-8d38-a379736efc1c" + "177f2e64-43bb-4984-813c-23e08d8d371b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,11 +1067,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "3cf3af86-d738-4d33-994b-82afa36c7cf2" + "077dc700-e586-4185-a4ec-64fa2b6d0a68" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214907Z:3cf3af86-d738-4d33-994b-82afa36c7cf2" + "WESTUS:20190806T200704Z:077dc700-e586-4185-a4ec-64fa2b6d0a68" + ], + "Date": [ + "Tue, 06 Aug 2019 20:07:04 GMT" ], "Content-Length": [ "187" @@ -1089,25 +1089,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:b8c67a63-be05-4c1e-8d38-a379736efc1c\\nTime:2019-04-23T21:49:07.2361182Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:177f2e64-43bb-4984-813c-23e08d8d371b\\nTime:2019-08-06T20:07:04.5720284Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourceGroups/azsmnet4204/providers/Microsoft.Batch/batchAccounts/azsmnet920?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTIwP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet164/providers/Microsoft.Batch/batchAccounts/azsmnet1937?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNjQvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQxOTM3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c73ea268-d9cc-42e2-91c2-b0f9eafa47f0" + "fe8059b9-23cf-4960-a13e-d3b3c8fe1d9a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1115,23 +1115,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "03ce914c-a018-4ef2-958b-93333a93b0ed" + "7588fab0-e267-43f1-a48d-ca01c2fdd6a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1139,35 +1133,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "0e1b60e6-5917-4e37-8d26-c6930cfcc1ae" + "3b35c87e-6c67-4909-ada5-f036efc7c3a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214907Z:0e1b60e6-5917-4e37-8d26-c6930cfcc1ae" + "WESTUS:20190806T200705Z:3b35c87e-6c67-4909-ada5-f036efc7c3a8" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1175,23 +1175,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:21 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9794ea82-185c-4a02-b90f-845eca33fab2" + "f2588670-c826-4122-b568-cb32099f591f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1199,35 +1193,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "e032745d-405a-42d9-ac90-7a4b1b776b2c" + "00ec41e9-800c-4635-899c-b2d121c1bc33" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214922Z:e032745d-405a-42d9-ac90-7a4b1b776b2c" + "WESTUS:20190806T200720Z:00ec41e9-800c-4635-899c-b2d121c1bc33" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1235,23 +1235,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "a84b0fba-31ba-47f9-8146-0d409975c999" + "ff934dc8-2716-4df8-aba7-b3dc56cab182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,34 +1254,40 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3eca1b4e-1ab2-4658-ac9b-9b667d014381" + "11861774-39f1-4829-845d-437524423d91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214938Z:3eca1b4e-1ab2-4658-ac9b-9b667d014381" + "WESTUS:20190806T200735Z:11861774-39f1-4829-845d-437524423d91" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1295,23 +1295,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:49:52 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f2fa7360-91d6-4d9c-a913-5ff3bbbd2354" + "f0fa692a-6f34-4082-9056-6d740f5abc10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1319,35 +1313,41 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "78cf5558-6098-4d28-b7bf-9113c7508f02" + "acf5e629-3774-4edf-bccf-d6b5d64afd7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T214953Z:78cf5558-6098-4d28-b7bf-9113c7508f02" + "WESTUS:20190806T200750Z:acf5e629-3774-4edf-bccf-d6b5d64afd7e" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:07:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1355,23 +1355,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:50:07 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bcd21aa8-0cfc-42ad-bcc0-1577f8bed6d9" + "2065d162-5c91-4695-a449-031aff59360d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1379,35 +1373,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "c4f2e6df-579b-45ab-b9fa-4a32ecbd9bfb" + "ec9ab28b-0790-4f83-8af3-f254d7778cd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215008Z:c4f2e6df-579b-45ab-b9fa-4a32ecbd9bfb" + "WESTUS:20190806T200806Z:ec9ab28b-0790-4f83-8af3-f254d7778cd0" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:08:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1415,23 +1415,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:50:22 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6b4d4e4e-0bb5-425e-aff8-215c6e38e9bc" + "090254c4-a630-4bda-a678-ff0712edf8fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1439,35 +1433,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "0fc21042-8ed8-4133-89e7-eb5902eaf32b" + "d9337a93-0078-49a1-b148-6d225f349d40" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215023Z:0fc21042-8ed8-4133-89e7-eb5902eaf32b" + "WESTUS:20190806T200821Z:d9337a93-0078-49a1-b148-6d225f349d40" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:08:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1475,23 +1475,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:50:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9e677af5-83e6-4ff6-9cb9-e4fb519f6082" + "b359cf8c-e895-4dcd-80e7-70778550008a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1499,35 +1493,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "66785342-6bb2-416f-92ba-93216ec8a705" + "9e4269ca-d5ad-4f70-adf2-ab6edc178e58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215038Z:66785342-6bb2-416f-92ba-93216ec8a705" + "WESTUS:20190806T200836Z:9e4269ca-d5ad-4f70-adf2-ab6edc178e58" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:08:35 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1535,23 +1535,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:50:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "667528ee-0015-4088-ad01-7e65053d950e" + "ea856f60-1572-4f2f-a22b-9e9de403f182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1559,35 +1553,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "c3623d96-281e-4df1-8e4d-573c51aee078" + "2eb91b3a-636b-4aa5-8091-d49720c10eb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215053Z:c3623d96-281e-4df1-8e4d-573c51aee078" + "WESTUS:20190806T200851Z:2eb91b3a-636b-4aa5-8091-d49720c10eb7" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:08:50 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1595,23 +1595,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:51:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "681ebfd0-53ac-45e9-ab67-bd1ee51c3e26" + "c82825aa-b081-4e07-822f-1b440d1935b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1620,34 +1614,40 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "e5fdce99-c04a-4650-870f-8a6e67e86e65" + "e86aa6c7-e910-4375-bf0b-9f352686da6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215108Z:e5fdce99-c04a-4650-870f-8a6e67e86e65" + "WESTUS:20190806T200906Z:e86aa6c7-e910-4375-bf0b-9f352686da6b" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:09:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1655,23 +1655,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:51:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5bc9eb02-9e7d-4369-baa8-84a4349e244d" + "a1d6f4b6-8cbe-4efb-b12a-4a40df8e06fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1679,35 +1673,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-correlation-request-id": [ - "739a3fed-702e-4ecd-9bda-275f9edaaa17" + "a6302129-0b38-405e-8834-e7154e01f65e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215124Z:739a3fed-702e-4ecd-9bda-275f9edaaa17" + "WESTUS:20190806T200921Z:a6302129-0b38-405e-8834-e7154e01f65e" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:09:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1715,23 +1715,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:51:38 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "6a4eeff9-4725-4088-966e-a0ab9d8d80f6" + "1d493e61-d02a-4726-8281-ae0afba600ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1739,35 +1733,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-correlation-request-id": [ - "2c3ef561-6406-4395-9a2f-3b8ba11bfea7" + "ddfb98ac-c5ed-449f-aea1-d83b84e04947" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215139Z:2c3ef561-6406-4395-9a2f-3b8ba11bfea7" + "WESTUS:20190806T200936Z:ddfb98ac-c5ed-449f-aea1-d83b84e04947" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:09:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1775,23 +1775,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:51:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "71eb7917-cd2e-4048-91f7-42c946336e9a" + "68b51fda-e8ef-4801-83ca-108fa745ced4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1799,35 +1793,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "18f751e1-39ab-462e-a908-664230c12df6" + "4722ed1b-6ef7-45e9-9889-ef656ad11d5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215154Z:18f751e1-39ab-462e-a908-664230c12df6" + "WESTUS:20190806T200952Z:4722ed1b-6ef7-45e9-9889-ef656ad11d5d" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:09:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1835,23 +1835,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:52:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "d92a9c1e-c604-4f23-acf8-4f64b740ebc7" + "6e30eaa1-f803-4c85-ac3d-89853971afd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1859,35 +1853,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "2de19b42-0572-4028-bcfa-253445785734" + "862d3b1e-b401-41bb-bcc0-c9fe1e484d71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215209Z:2de19b42-0572-4028-bcfa-253445785734" + "WESTUS:20190806T201007Z:862d3b1e-b401-41bb-bcc0-c9fe1e484d71" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:10:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1895,23 +1895,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:52:24 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "ae2f6200-802c-48b6-9240-9ae89566f903" + "6d0d4b6b-8ea6-4453-af7f-09b8616e1e41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1919,35 +1913,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "5db190b8-32d0-4577-aed6-01f1b2da202d" + "813a2028-3ed3-4a24-ab33-f78e764aa96e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215224Z:5db190b8-32d0-4577-aed6-01f1b2da202d" + "WESTUS:20190806T201022Z:813a2028-3ed3-4a24-ab33-f78e764aa96e" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:10:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -1955,23 +1955,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:52:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "2a97fdae-4d7f-4f24-b067-36df122730b4" + "a20f648e-e043-4ebd-9097-0080b5c2f882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,34 +1974,40 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a5bad86f-3ef4-4339-bce3-0037acf8916f" + "216a02e4-e5c0-4ed1-b335-1f1a77549b52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215240Z:a5bad86f-3ef4-4339-bce3-0037acf8916f" + "WESTUS:20190806T201037Z:216a02e4-e5c0-4ed1-b335-1f1a77549b52" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:10:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2015,23 +2015,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:52:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "f393d826-ce77-48f2-b564-3aa4e95f7a1e" + "3bf55ee1-48a4-4d77-80e8-54c73beebec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2039,35 +2033,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "3a8acc70-fbc7-42f4-9280-14ef815a27d2" + "99c9ca1d-8dbd-4e00-bcd4-90eda0581606" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215255Z:3a8acc70-fbc7-42f4-9280-14ef815a27d2" + "WESTUS:20190806T201052Z:99c9ca1d-8dbd-4e00-bcd4-90eda0581606" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:10:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2075,23 +2075,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:53:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "62017401-0f10-4a99-abc3-ba24364cd8a8" + "14c533c8-76b0-4de7-8091-70ecbe013cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2099,35 +2093,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "49662e8e-a9f0-42c0-812b-fdda849387e1" + "30c94e2d-e164-4721-bb67-07fab45455b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215310Z:49662e8e-a9f0-42c0-812b-fdda849387e1" + "WESTUS:20190806T201107Z:30c94e2d-e164-4721-bb67-07fab45455b2" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:11:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2135,23 +2135,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:53:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "5a6fd3d8-f92c-4f3b-851e-ef66e3c9580f" + "e35d50d2-0045-4fbe-9fa1-6f426e5c5b3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2159,35 +2153,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-correlation-request-id": [ - "84f02928-fa9b-4284-8980-f3fc8507a6fa" + "37379472-732b-4651-9e72-0034b58ea939" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215325Z:84f02928-fa9b-4284-8980-f3fc8507a6fa" + "WESTUS:20190806T201122Z:37379472-732b-4651-9e72-0034b58ea939" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:11:22 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2195,23 +2195,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:53:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e58f57b7-1795-4f16-aa61-6143162ff330" + "3dcd81ce-5758-49d4-946d-054237bbef9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2219,35 +2213,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-correlation-request-id": [ - "7109993b-ddff-4b1c-94b9-8568086cbd55" + "79b092b5-fa10-4cde-acdf-bcc1c45644e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215340Z:7109993b-ddff-4b1c-94b9-8568086cbd55" + "WESTUS:20190806T201137Z:79b092b5-fa10-4cde-acdf-bcc1c45644e7" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:11:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2255,23 +2255,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:53:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "eb3e3b94-5104-4deb-b864-e74f5e2e8235" + "e05b6b64-c312-4043-8bb5-75c258bfbde7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2279,35 +2273,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11973" ], "x-ms-correlation-request-id": [ - "2bece077-a567-47a7-b4d9-3729431d6f82" + "521edfc7-db03-4500-89b4-fcfb90442896" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215355Z:2bece077-a567-47a7-b4d9-3729431d6f82" + "WESTUS:20190806T201153Z:521edfc7-db03-4500-89b4-fcfb90442896" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:11:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2315,23 +2315,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:54:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7116e33f-5a4d-4c43-bbac-80a8b3415030" + "a4a739bf-fb75-4cd1-aae9-f6759fe19b63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,34 +2334,40 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11972" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d33db27c-8b96-472c-a04f-212a7a0c2b47" + "610a8f37-da65-46bb-a191-27002f5272ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215410Z:d33db27c-8b96-472c-a04f-212a7a0c2b47" + "WESTUS:20190806T201208Z:610a8f37-da65-46bb-a191-27002f5272ec" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:12:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2375,23 +2375,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:54:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "9c88a83d-8f81-4843-90d2-22cf5f0cea6f" + "d88830de-1d3e-404b-ba8f-3d6c9ca8d105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2399,35 +2393,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11971" ], "x-ms-correlation-request-id": [ - "a262d74f-f026-4869-a1de-9adaedd852ec" + "f89bd4cb-4150-4a25-ac3b-e6a7cb9ecf4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215425Z:a262d74f-f026-4869-a1de-9adaedd852ec" + "WESTUS:20190806T201223Z:f89bd4cb-4150-4a25-ac3b-e6a7cb9ecf4b" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:12:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2435,23 +2435,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:54:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0f1f0032-14fa-4b95-b1b2-2c399c55a2db" + "49ecd95a-af82-4717-a6e4-92f9039fbabd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2459,35 +2453,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11970" ], "x-ms-correlation-request-id": [ - "bb74b9f4-9322-427d-922c-925a61c8487e" + "d2da7c11-8c5b-4b69-91ee-67e3b0b92c6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215441Z:bb74b9f4-9322-427d-922c-925a61c8487e" + "WESTUS:20190806T201238Z:d2da7c11-8c5b-4b69-91ee-67e3b0b92c6d" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:12:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2495,23 +2495,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:54:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01" ], "Retry-After": [ "15" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "c3ec6630-ce95-41f4-b4b9-e3e6725d9a2f" + "645f555c-38a5-4993-bdf3-4a49f2f20ac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2519,35 +2513,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11969" ], "x-ms-correlation-request-id": [ - "e845595e-eb85-4615-9fb8-31ec9527a98e" + "dd0b89d9-0494-48a9-991a-713353e5094a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215456Z:e845595e-eb85-4615-9fb8-31ec9527a98e" + "WESTUS:20190806T201253Z:dd0b89d9-0494-48a9-991a-713353e5094a" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:12:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2555,17 +2555,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b8371e41-00ce-46f4-b991-7ab860060c4d" + "ef8b5c85-e938-4e17-86e1-ee86df5f0f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2573,35 +2567,41 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11968" ], "x-ms-correlation-request-id": [ - "0603c6fa-bc76-457f-b9d7-9ac9a00eee46" + "a05d3cfd-6e7e-4e0b-924b-722a3cc64e5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215511Z:0603c6fa-bc76-457f-b9d7-9ac9a00eee46" + "WESTUS:20190806T201308Z:a05d3cfd-6e7e-4e0b-924b-722a3cc64e5b" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet920-03ce914c-a018-4ef2-958b-93333a93b0ed?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTIwLTAzY2U5MTRjLWEwMTgtNGVmMi05NThiLTkzMzMzYTkzYjBlZD9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1937-7588fab0-e267-43f1-a48d-ca01c2fdd6a1?api-version=2019-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTkzNy03NTg4ZmFiMC1lMjY3LTQzZjEtYTQ4ZC1jYTAxYzJmZGQ2YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Batch.BatchManagementClient/8.0.0.0" ] }, @@ -2609,17 +2609,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "680d3119-7985-4884-b4cc-90ef332dee17" + "bc15cf22-4112-4b29-b1dd-5bf7cba81b75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2627,41 +2621,47 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11967" ], "x-ms-correlation-request-id": [ - "533b6ba8-dd56-4357-9973-b458ef24f54c" + "32ae6c0e-d039-4596-9a86-ac1c3e7312aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215511Z:533b6ba8-dd56-4357-9973-b458ef24f54c" + "WESTUS:20190806T201308Z:32ae6c0e-d039-4596-9a86-ac1c3e7312aa" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/resourcegroups/azsmnet4204?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MjA0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet164?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5f485a0-4b2d-4274-91a7-33e52ade0a0c" + "51eca602-186a-46de-a293-1dd351fe24dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2669,14 +2669,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:12 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -2685,13 +2682,13 @@ "14999" ], "x-ms-request-id": [ - "6569ef92-b796-4243-8bf4-141e8fa0457f" + "ceae88be-3059-4154-a8f1-b29ba916a3a9" ], "x-ms-correlation-request-id": [ - "6569ef92-b796-4243-8bf4-141e8fa0457f" + "ceae88be-3059-4154-a8f1-b29ba916a3a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215513Z:6569ef92-b796-4243-8bf4-141e8fa0457f" + "WESTUS:20190806T201311Z:ceae88be-3059-4154-a8f1-b29ba916a3a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2699,26 +2696,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOREl3TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVFkwTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2726,14 +2726,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:27 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -2742,13 +2739,13 @@ "11999" ], "x-ms-request-id": [ - "d2190057-19b1-40ab-9bea-6eb33fcc853a" + "2bec1565-2c35-4d09-8b91-20e60d96052d" ], "x-ms-correlation-request-id": [ - "d2190057-19b1-40ab-9bea-6eb33fcc853a" + "2bec1565-2c35-4d09-8b91-20e60d96052d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215528Z:d2190057-19b1-40ab-9bea-6eb33fcc853a" + "WESTUS:20190806T201326Z:2bec1565-2c35-4d09-8b91-20e60d96052d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2756,26 +2753,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOREl3TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVFkwTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2783,14 +2783,11 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -2799,13 +2796,13 @@ "11998" ], "x-ms-request-id": [ - "4f7dc159-5d2b-4e25-b672-c0eec8d49005" + "396f9345-17dd-458e-9b37-1cca0cead452" ], "x-ms-correlation-request-id": [ - "4f7dc159-5d2b-4e25-b672-c0eec8d49005" + "396f9345-17dd-458e-9b37-1cca0cead452" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215543Z:4f7dc159-5d2b-4e25-b672-c0eec8d49005" + "WESTUS:20190806T201341Z:396f9345-17dd-458e-9b37-1cca0cead452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2813,26 +2810,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOREl3TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVFkwTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2840,9 +2840,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:58 GMT" - ], "Pragma": [ "no-cache" ], @@ -2850,13 +2847,13 @@ "11997" ], "x-ms-request-id": [ - "f4760dc1-855d-4152-a4cb-130f3212f8ee" + "c4c3e436-e37b-4a12-8012-f8cf693367f6" ], "x-ms-correlation-request-id": [ - "f4760dc1-855d-4152-a4cb-130f3212f8ee" + "c4c3e436-e37b-4a12-8012-f8cf693367f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215558Z:f4760dc1-855d-4152-a4cb-130f3212f8ee" + "WESTUS:20190806T201356Z:c4c3e436-e37b-4a12-8012-f8cf693367f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2864,26 +2861,29 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0add380e-d91b-4aaf-aa97-814326a8ab7f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDIwNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGFkZDM4MGUtZDkxYi00YWFmLWFhOTctODE0MzI2YThhYjdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOREl3TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTY0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVFkwTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25921.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2891,9 +2891,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 23 Apr 2019 21:55:58 GMT" - ], "Pragma": [ "no-cache" ], @@ -2901,13 +2898,13 @@ "11996" ], "x-ms-request-id": [ - "d63bbd2c-0b2b-4e66-b783-b2189cac1491" + "bc92df7d-e71e-415d-9bc2-60df4d15926d" ], "x-ms-correlation-request-id": [ - "d63bbd2c-0b2b-4e66-b783-b2189cac1491" + "bc92df7d-e71e-415d-9bc2-60df4d15926d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190423T215558Z:d63bbd2c-0b2b-4e66-b783-b2189cac1491" + "WESTUS:20190806T201356Z:bc92df7d-e71e-415d-9bc2-60df4d15926d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2915,11 +2912,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 20:13:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2928,11 +2928,11 @@ ], "Names": { "BatchPoolEndToEndAsync": [ - "azsmnet4204", - "azsmnet920" + "azsmnet164", + "azsmnet1937" ] }, "Variables": { - "SubscriptionId": "0add380e-d91b-4aaf-aa97-814326a8ab7f" + "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9" } } \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs index cfdc8c8acdbd..50766451ff4f 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs @@ -36,11 +36,16 @@ public EntityLabel() /// the extracted entity starts. /// The index within the utterance where /// the extracted entity ends. - public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex) + /// The role of the entity within the + /// utterance. + /// The role Id. + public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex, string role = default(string), string roleId = default(string)) { EntityName = entityName; StartTokenIndex = startTokenIndex; EndTokenIndex = endTokenIndex; + Role = role; + RoleId = roleId; CustomInit(); } @@ -69,6 +74,18 @@ public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex) [JsonProperty(PropertyName = "endTokenIndex")] public int EndTokenIndex { get; set; } + /// + /// Gets or sets the role of the entity within the utterance. + /// + [JsonProperty(PropertyName = "role")] + public string Role { get; set; } + + /// + /// Gets or sets the role Id. + /// + [JsonProperty(PropertyName = "roleId")] + public string RoleId { get; set; } + /// /// Validate the object. /// diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs index b1b9f91d9c61..b8bd3e196128 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs @@ -36,11 +36,14 @@ public EntityLabelObject() /// the extracted entity starts. /// The index within the utterance where the /// extracted entity ends. - public EntityLabelObject(string entityName, int startCharIndex, int endCharIndex) + /// The role of the entity within the + /// utterance. + public EntityLabelObject(string entityName, int startCharIndex, int endCharIndex, string role = default(string)) { EntityName = entityName; StartCharIndex = startCharIndex; EndCharIndex = endCharIndex; + Role = role; CustomInit(); } @@ -69,6 +72,12 @@ public EntityLabelObject(string entityName, int startCharIndex, int endCharIndex [JsonProperty(PropertyName = "endCharIndex")] public int EndCharIndex { get; set; } + /// + /// Gets or sets the role of the entity within the utterance. + /// + [JsonProperty(PropertyName = "role")] + public string Role { get; set; } + /// /// Validate the object. /// diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs index 187a5a624a2f..7408af72872e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs @@ -35,11 +35,14 @@ public JSONEntity() /// The index within the utterance where the /// extracted entity ends. /// The entity name. - public JSONEntity(int startPos, int endPos, string entity) + /// The role of the entity within the + /// utterance. + public JSONEntity(int startPos, int endPos, string entity, string role = default(string)) { StartPos = startPos; EndPos = endPos; Entity = entity; + Role = role; CustomInit(); } @@ -68,6 +71,12 @@ public JSONEntity(int startPos, int endPos, string entity) [JsonProperty(PropertyName = "entity")] public string Entity { get; set; } + /// + /// Gets or sets the role of the entity within the utterance. + /// + [JsonProperty(PropertyName = "role")] + public string Role { get; set; } + /// /// Validate the object. /// diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj index 8a5e0d83d242..961029d9c013 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj @@ -2,19 +2,14 @@ Microsoft Azure Cognitive Services Language LUIS Authoring Provides API functions for consuming the Microsoft Azure Cognitive Services LUIS Authoring API. - 3.0.0 + 3.1.0 Microsoft Cognitive Services;Cognitive Services;Cognitive Services SDK;LUIS;Language Understanding Intelligent Service;Language Understanding;REST HTTP client diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs index 2939153efdf7..bc251b09a809 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs @@ -10,7 +10,7 @@ public class AppsTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListApplications() { UseClientFor(async client => @@ -36,7 +36,7 @@ public void ListApplications() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddApplication() { UseClientFor(async client => @@ -64,7 +64,7 @@ public void AddApplication() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetApplication() { UseClientFor(async client => @@ -91,7 +91,7 @@ public void GetApplication() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateApplication() { UseClientFor(async client => @@ -122,7 +122,7 @@ public void UpdateApplication() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteApplication() { UseClientFor(async client => @@ -145,7 +145,7 @@ public void DeleteApplication() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListEndpoints() { UseClientFor(async client => @@ -172,7 +172,7 @@ public void ListEndpoints() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void PublishApplication() { UseClientFor(async client => @@ -189,7 +189,7 @@ public void PublishApplication() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DownloadQueryLogs() { UseClientFor(async client => @@ -215,7 +215,7 @@ public void DownloadQueryLogs() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetSettings() { UseClientFor(async client => @@ -240,7 +240,7 @@ public void GetSettings() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateSettings() { UseClientFor(async client => @@ -269,7 +269,7 @@ public void UpdateSettings() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPublishSettings() { UseClientFor(async client => @@ -296,7 +296,7 @@ public void GetPublishSettings() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePublishSettings() { UseClientFor(async client => @@ -329,7 +329,7 @@ public void UpdatePublishSettings() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListDomains() { UseClientFor(async client => @@ -342,7 +342,7 @@ public void ListDomains() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListSupportedCultures() { UseClientFor(async client => @@ -356,7 +356,7 @@ public void ListSupportedCultures() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListUsageScenarios() { UseClientFor(async client => @@ -369,7 +369,7 @@ public void ListUsageScenarios() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListAvailableCustomPrebuiltDomains() { UseClientFor(async client => @@ -385,7 +385,7 @@ public void ListAvailableCustomPrebuiltDomains() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListAvailableCustomPrebuiltDomainsForCulture() { UseClientFor(async client => @@ -404,7 +404,7 @@ public void ListAvailableCustomPrebuiltDomainsForCulture() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCustomPrebuiltApplication() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs index 09bead01c8b8..d260318c83be 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs @@ -11,7 +11,7 @@ namespace LUIS.Authoring.Tests.Luis public class EntityRolesTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddSimpleEntityRole() { UseClientFor(async client => @@ -31,7 +31,7 @@ public void AddSimpleEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPrebuiltEntityRole() { UseClientFor(async client => @@ -48,7 +48,7 @@ public void AddPrebuiltEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddClosedListEntityRole() { UseClientFor(async client => @@ -72,7 +72,7 @@ public void AddClosedListEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddRegexEntityRole() { UseClientFor(async client => @@ -93,7 +93,7 @@ public void AddRegexEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCompositeEntityRole() { UseClientFor(async client => @@ -124,7 +124,7 @@ public void AddCompositeEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPatternAnyEntityRole() { UseClientFor(async client => @@ -145,7 +145,7 @@ public void AddPatternAnyEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddHierarchicalEntityRole() { UseClientFor(async client => @@ -167,7 +167,7 @@ public void AddHierarchicalEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCustomPrebuiltDomainEntityRole() { UseClientFor(async client => @@ -189,7 +189,7 @@ public void AddCustomPrebuiltDomainEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetSimpleEntityRole() { UseClientFor(async client => @@ -209,7 +209,7 @@ public void GetSimpleEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPrebuiltEntityRole() { UseClientFor(async client => @@ -226,7 +226,7 @@ public void GetPrebuiltEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetClosedListEntityRole() { UseClientFor(async client => @@ -250,7 +250,7 @@ public void GetClosedListEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetRegexEntityRole() { UseClientFor(async client => @@ -271,7 +271,7 @@ public void GetRegexEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetCompositeEntityRole() { UseClientFor(async client => @@ -302,7 +302,7 @@ public void GetCompositeEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPatternAnyEntityRole() { UseClientFor(async client => @@ -323,7 +323,7 @@ public void GetPatternAnyEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetHierarchicalEntityRole() { UseClientFor(async client => @@ -345,7 +345,7 @@ public void GetHierarchicalEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetCustomPrebuiltDomainEntityRole() { UseClientFor(async client => @@ -367,7 +367,7 @@ public void GetCustomPrebuiltDomainEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetSimpleEntityRoles() { UseClientFor(async client => @@ -387,7 +387,7 @@ public void GetSimpleEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPrebuiltEntityRoles() { UseClientFor(async client => @@ -404,7 +404,7 @@ public void GetPrebuiltEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetClosedListEntityRoles() { UseClientFor(async client => @@ -428,7 +428,7 @@ public void GetClosedListEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetRegexEntityRoles() { UseClientFor(async client => @@ -449,7 +449,7 @@ public void GetRegexEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetCompositeEntityRoles() { UseClientFor(async client => @@ -480,7 +480,7 @@ public void GetCompositeEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPatternAnyEntityRoles() { UseClientFor(async client => @@ -501,7 +501,7 @@ public void GetPatternAnyEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetHierarchicalEntityRoles() { UseClientFor(async client => @@ -523,7 +523,7 @@ public void GetHierarchicalEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetCustomPrebuiltDomainEntityRoles() { UseClientFor(async client => @@ -545,7 +545,7 @@ public void GetCustomPrebuiltDomainEntityRoles() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateSimpleEntityRole() { UseClientFor(async client => @@ -569,7 +569,7 @@ public void UpdateSimpleEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePrebuiltEntityRole() { UseClientFor(async client => @@ -590,7 +590,7 @@ public void UpdatePrebuiltEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateClosedListEntityRole() { UseClientFor(async client => @@ -618,7 +618,7 @@ public void UpdateClosedListEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateRegexEntityRole() { UseClientFor(async client => @@ -643,7 +643,7 @@ public void UpdateRegexEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateCompositeEntityRole() { UseClientFor(async client => @@ -678,7 +678,7 @@ public void UpdateCompositeEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePatternAnyEntityRole() { UseClientFor(async client => @@ -703,7 +703,7 @@ public void UpdatePatternAnyEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateHierarchicalEntityRole() { UseClientFor(async client => @@ -729,7 +729,7 @@ public void UpdateHierarchicalEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateCustomPrebuiltDomainEntityRole() { UseClientFor(async client => @@ -755,7 +755,7 @@ public void UpdateCustomPrebuiltDomainEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteSimpleEntityRole() { UseClientFor(async client => @@ -776,7 +776,7 @@ public void DeleteSimpleEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePrebuiltEntityRole() { UseClientFor(async client => @@ -794,7 +794,7 @@ public void DeletePrebuiltEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteClosedListEntityRole() { UseClientFor(async client => @@ -819,7 +819,7 @@ public void DeleteClosedListEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteRegexEntityRole() { UseClientFor(async client => @@ -841,7 +841,7 @@ public void DeleteRegexEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteCompositeEntityRole() { UseClientFor(async client => @@ -873,7 +873,7 @@ public void DeleteCompositeEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePatternAnyEntityRole() { UseClientFor(async client => @@ -895,7 +895,7 @@ public void DeletePatternAnyEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteHierarchicalEntityRole() { UseClientFor(async client => @@ -918,7 +918,7 @@ public void DeleteHierarchicalEntityRole() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteCustomPrebuiltDomainEntityRole() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs index 77d6347ab6a5..618510a4117f 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs @@ -11,7 +11,7 @@ public class ExamplesTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListExamples() { UseClientFor(async client => @@ -22,7 +22,7 @@ public void ListExamples() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListExamples_ForEmptyApplication_ReturnsEmpty() { UseClientFor(async client => @@ -44,7 +44,7 @@ public void ListExamples_ForEmptyApplication_ReturnsEmpty() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddExample() { UseClientFor(async client => @@ -91,7 +91,7 @@ public void AddExample() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddExamplesInBatch() { UseClientFor(async client => @@ -156,7 +156,7 @@ public void AddExamplesInBatch() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors() { UseClientFor(async client => @@ -221,7 +221,7 @@ public void AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteExample() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs index dd0667dfd0f2..2b4517562a15 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs @@ -8,7 +8,7 @@ public class FeaturesPhraseListsTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPhraseList() { UseClientFor(async client => @@ -29,7 +29,7 @@ public void AddPhraseList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListPhraseLists() { UseClientFor(async client => @@ -48,7 +48,7 @@ public void ListPhraseLists() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPhraseList() { UseClientFor(async client => @@ -69,7 +69,7 @@ public void GetPhraseList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePhraseList() { UseClientFor(async client => @@ -97,7 +97,7 @@ public void UpdatePhraseList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePhraseList() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs index d8c0a69e6ae0..3df11dcc7699 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs @@ -8,7 +8,7 @@ public class FeaturesTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListFeatures() { var appJson = File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "SessionRecords/ImportApp.json")); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ImportExportTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ImportExportTests.cs index 9b5ab606c476..12b55f92d228 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ImportExportTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ImportExportTests.cs @@ -10,7 +10,7 @@ public class ImportExportTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ExportVersion() { UseClientFor(async client => @@ -33,7 +33,7 @@ public void ExportVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ImportVersion() { var appJson = File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "SessionRecords/ImportApp.json")); @@ -58,7 +58,7 @@ public void ImportVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ImportApp() { var appJson = File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "SessionRecords/ImportApp.json")); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelClosedListsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelClosedListsTests.cs index 4857e350a010..58fcc8251bbf 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelClosedListsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelClosedListsTests.cs @@ -11,7 +11,7 @@ public class ModelClosedListsTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListClosedLists() { UseClientFor(async client => @@ -24,7 +24,7 @@ public void ListClosedLists() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddClosedList() { UseClientFor(async client => @@ -36,7 +36,7 @@ public void AddClosedList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetClosedList() { UseClientFor(async client => @@ -51,7 +51,7 @@ public void GetClosedList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateClosedList() { UseClientFor(async client => @@ -81,7 +81,7 @@ public void UpdateClosedList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteClosedList() { UseClientFor(async client => @@ -95,7 +95,7 @@ public void DeleteClosedList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void PatchClosedList() { UseClientFor(async client => @@ -128,7 +128,7 @@ public void PatchClosedList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddSubList() { UseClientFor(async client => @@ -149,7 +149,7 @@ public void AddSubList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteSubList() { UseClientFor(async client => @@ -167,7 +167,7 @@ public void DeleteSubList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateSubList() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs index df04f4065f56..b7f05af465cd 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs @@ -9,7 +9,7 @@ public class ModelSimpleEntitiesTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListEntities() { UseClientFor(async client => @@ -28,7 +28,7 @@ public void ListEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetEntity() { UseClientFor(async client => @@ -48,7 +48,7 @@ public void GetEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddEntity() { UseClientFor(async client => @@ -68,7 +68,7 @@ public void AddEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateEntity() { UseClientFor(async client => @@ -92,7 +92,7 @@ public void UpdateEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteEntity() { UseClientFor(async client => @@ -110,7 +110,7 @@ public void DeleteEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetEntitySuggestions_ReturnsEmpty() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelIntentsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelIntentsTests.cs index 22a70492c596..b9675b30684d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelIntentsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelIntentsTests.cs @@ -10,7 +10,7 @@ public class ModelIntentsTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListIntents() { UseClientFor(async client => @@ -21,7 +21,7 @@ public void ListIntents() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddIntent() { UseClientFor(async client => @@ -40,7 +40,7 @@ public void AddIntent() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetIntent() { UseClientFor(async client => @@ -58,7 +58,7 @@ public void GetIntent() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateIntent() { UseClientFor(async client => @@ -84,7 +84,7 @@ public void UpdateIntent() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteIntent() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs index 2b87a339d4ed..94e8e34bb88c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs @@ -12,7 +12,7 @@ public class ModelPatternAnyTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListEntities() { UseClientFor(async client => @@ -34,7 +34,7 @@ public void ListEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetEntity() { UseClientFor(async client => @@ -56,7 +56,7 @@ public void GetEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddEntity() { UseClientFor(async client => @@ -78,7 +78,7 @@ public void AddEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateEntity() { UseClientFor(async client => @@ -106,7 +106,7 @@ public void UpdateEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteEntity() { UseClientFor(async client => @@ -125,7 +125,7 @@ public void DeleteEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetExplicitList() { UseClientFor(async client => @@ -146,7 +146,7 @@ public void GetExplicitList() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddExplicitListItem() { UseClientFor(async client => @@ -171,7 +171,7 @@ public void AddExplicitListItem() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetExplicitListItem() { UseClientFor(async client => @@ -196,7 +196,7 @@ public void GetExplicitListItem() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateExplicitListItem() { UseClientFor(async client => @@ -226,7 +226,7 @@ public void UpdateExplicitListItem() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteExplicitListItem() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs index 1cc9abb3f90c..19889c73856e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs @@ -8,7 +8,7 @@ public class ModelPrebuiltDomainTests: BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCustomPrebuiltDomain() { UseClientFor(async client => @@ -31,7 +31,7 @@ public void AddCustomPrebuiltDomain() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteCustomPrebuiltDomain() { UseClientFor(async client => @@ -56,7 +56,7 @@ public void DeleteCustomPrebuiltDomain() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListCustomPrebuiltEntities() { UseClientFor(async client => @@ -75,7 +75,7 @@ public void ListCustomPrebuiltEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCustomPrebuiltEntity() { UseClientFor(async client => @@ -95,7 +95,7 @@ public void AddCustomPrebuiltEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListCustomPrebuiltIntents() { UseClientFor(async client => @@ -114,7 +114,7 @@ public void ListCustomPrebuiltIntents() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCustomPrebuiltIntent() { UseClientFor(async client => @@ -136,7 +136,7 @@ public void AddCustomPrebuiltIntent() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListCustomPrebuiltModels() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelRegexEntitiesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelRegexEntitiesTests.cs index b4a2ad379049..b4e39fb10030 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelRegexEntitiesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelRegexEntitiesTests.cs @@ -9,7 +9,7 @@ public class ModelRegexEntitiesTests : BaseTest { private const string versionId = "0.1"; - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetRegexEntities() { UseClientFor(async client => @@ -22,7 +22,7 @@ public void GetRegexEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void CreateRegexEntity() { UseClientFor(async client => @@ -34,7 +34,7 @@ public void CreateRegexEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetRegexEntity() { UseClientFor(async client => @@ -49,7 +49,7 @@ public void GetRegexEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateRegexEntity() { UseClientFor(async client => @@ -71,7 +71,7 @@ public void UpdateRegexEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteRegexEntity() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs index 64e3340521c3..d60a19ed1196 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs @@ -9,7 +9,7 @@ public class ModelTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListCompositeEntities() { UseClientFor(async client => @@ -24,7 +24,7 @@ public void ListCompositeEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCompositeEntity() { UseClientFor(async client => @@ -39,7 +39,7 @@ public void AddCompositeEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetCompositeEntity() { UseClientFor(async client => @@ -55,7 +55,7 @@ public void GetCompositeEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateCompositeEntity() { UseClientFor(async client => @@ -74,7 +74,7 @@ public void UpdateCompositeEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteCompositeEntity() { UseClientFor(async client => @@ -89,7 +89,7 @@ public void DeleteCompositeEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddCompositeEntityChild() { UseClientFor(async client => @@ -110,7 +110,7 @@ public void AddCompositeEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteCompositeEntityChild() { UseClientFor(async client => @@ -132,7 +132,7 @@ public void DeleteCompositeEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListHierarchicalEntities() { UseClientFor(async client => @@ -146,7 +146,7 @@ public void ListHierarchicalEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddHierarchicalEntity() { UseClientFor(async client => @@ -158,7 +158,7 @@ public void AddHierarchicalEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetHierarchicalEntity() { UseClientFor(async client => @@ -171,7 +171,7 @@ public void GetHierarchicalEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateHierarchicalEntity() { UseClientFor(async client => @@ -185,7 +185,7 @@ public void UpdateHierarchicalEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteHierarchicalEntity() { UseClientFor(async client => @@ -199,7 +199,7 @@ public void DeleteHierarchicalEntity() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetHierarchicalEntityChild() { UseClientFor(async client => @@ -213,7 +213,7 @@ public void GetHierarchicalEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteHierarchicalEntityChild() { UseClientFor(async client => @@ -230,7 +230,7 @@ public void DeleteHierarchicalEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateHierarchicalEntityChild() { UseClientFor(async client => @@ -251,7 +251,7 @@ public void UpdateHierarchicalEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddHierarchicalEntityChild() { UseClientFor(async client => @@ -269,7 +269,7 @@ public void AddHierarchicalEntityChild() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListModels() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelprebuiltsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelprebuiltsTests.cs index e8c2013895b8..e08f65170b3a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelprebuiltsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelprebuiltsTests.cs @@ -7,7 +7,7 @@ public class ModelPrebuiltsTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListPrebuiltEntities() { UseClientFor(async client => @@ -19,7 +19,7 @@ public void ListPrebuiltEntities() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListPrebuilts() { UseClientFor(async client => @@ -38,7 +38,7 @@ public void ListPrebuilts() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPrebuilt() { UseClientFor(async client => @@ -59,7 +59,7 @@ public void AddPrebuilt() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPrebuilt() { UseClientFor(async client => @@ -77,7 +77,7 @@ public void GetPrebuilt() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePrebuilt() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs index e7f2f9bfec7a..a163ab37861b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs @@ -9,7 +9,7 @@ namespace LUIS.Authoring.Tests.Luis public class PatternsTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPattern() { UseClientFor(async client => @@ -36,7 +36,7 @@ public void AddPattern() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPatterns() { UseClientFor(async client => @@ -71,7 +71,7 @@ public void AddPatterns() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePattern() { UseClientFor(async client => @@ -102,7 +102,7 @@ public void UpdatePattern() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePatterns() { UseClientFor(async client => @@ -134,7 +134,7 @@ public void UpdatePatterns() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetPatterns() { UseClientFor(async client => @@ -172,7 +172,7 @@ public void GetPatterns() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetIntentPatterns() { UseClientFor(async client => @@ -211,7 +211,7 @@ public void GetIntentPatterns() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePattern() { UseClientFor(async client => @@ -235,7 +235,7 @@ public void DeletePattern() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePatterns() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PermissionsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PermissionsTests.cs index 69a79971052c..a356324974fa 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PermissionsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PermissionsTests.cs @@ -6,7 +6,7 @@ public class PermissionsTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListPermissions() { UseClientFor(async client => @@ -39,7 +39,7 @@ public void ListPermissions() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void AddPermission() { UseClientFor(async client => @@ -57,7 +57,7 @@ public void AddPermission() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeletePermission() { UseClientFor(async client => @@ -75,7 +75,7 @@ public void DeletePermission() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdatePermission() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/TrainTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/TrainTests.cs index e856174568d0..4a0bfd37a998 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/TrainTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/TrainTests.cs @@ -7,7 +7,7 @@ public class TrainTests : BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetStatus() { UseClientFor(async client => @@ -43,7 +43,7 @@ public void GetStatus() } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void TrainVersion() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/VersionsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/VersionsTests.cs index 2743099b6170..7969e3ca7ec8 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/VersionsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/VersionsTests.cs @@ -8,7 +8,7 @@ public class VersionsTests: BaseTest { - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListVersions() { UseClientFor(async client => @@ -23,7 +23,7 @@ public void ListVersions() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetVersion() { UseClientFor(async client => @@ -38,7 +38,7 @@ public void GetVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateVersion() { UseClientFor(async client => @@ -63,7 +63,7 @@ public void UpdateVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteVersion() { UseClientFor(async client => @@ -89,7 +89,7 @@ public void DeleteVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void CloneVersion() { UseClientFor(async client => @@ -113,7 +113,7 @@ public void CloneVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListVersions_ErrorSubscriptionKey() { var headers = new Dictionary> @@ -130,7 +130,7 @@ public void ListVersions_ErrorSubscriptionKey() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void ListVersions_ErrorAppId() { var errorCode = "BadArgument"; @@ -143,7 +143,7 @@ public void ListVersions_ErrorAppId() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void GetVersion_ErrorVersion() { var errorCode = "BadArgument"; @@ -158,7 +158,7 @@ public void GetVersion_ErrorVersion() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void UpdateVersion_ErrorModel() { var errorCode = "BadArgument"; @@ -178,7 +178,7 @@ public void UpdateVersion_ErrorModel() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void DeleteVersion_ErrorModel() { var errorCode = "BadArgument"; @@ -194,7 +194,7 @@ public void DeleteVersion_ErrorModel() }); } - [Fact(Skip = "https://github.com/Azure/azure-sdk-for-net/issues/6211")] + [Fact] public void CloneVersion_ErrorModel() { var errorCode = "BadArgument"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index 3d2b4e3b39d7..ef440086fa07 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2019-03-01;Compute_2018-09-30;Compute_2019-04-01;ContainerService_2017-01-31; + Compute_2019-03-01;Compute_2018-09-30;Compute_2019-07-01;Compute_2019-04-01;ContainerService_2017-01-31; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs index de5198b96027..0a097818c99a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs @@ -180,6 +180,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. Possible values + /// include: 'instanceView' + /// /// /// The headers that will be added to request. /// @@ -195,7 +199,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the status of a virtual machine from a VM scale set. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs index 6957ea29c92c..a97fa45e9c92 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs @@ -47,8 +47,8 @@ public DedicatedHostGroup() /// Resource tags /// A list of references to all dedicated hosts in /// the dedicated host group. - /// Availability Zone to use for this host group � - /// only single zone is supported. The zone can be assigned only during + /// Availability Zone to use for this host group. + /// Only single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the /// same zone. @@ -80,7 +80,7 @@ public DedicatedHostGroup() public IList Hosts { get; private set; } /// - /// Gets or sets availability Zone to use for this host group � only + /// Gets or sets availability Zone to use for this host group. Only /// single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs index 46800c5fea9f..333098c83241 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs @@ -40,8 +40,8 @@ public DedicatedHostGroupUpdate() /// Resource tags /// A list of references to all dedicated hosts in /// the dedicated host group. - /// Availability Zone to use for this host group � - /// only single zone is supported. The zone can be assigned only during + /// Availability Zone to use for this host group. + /// Only single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the /// same zone. @@ -73,7 +73,7 @@ public DedicatedHostGroupUpdate() public IList Hosts { get; private set; } /// - /// Gets or sets availability Zone to use for this host group � only + /// Gets or sets availability Zone to use for this host group. Only /// single zone is supported. The zone can be assigned only during /// creation. If not provided, the group supports all zones in the /// region. If provided, enforces each host in the group to be in the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ScheduledEventsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ScheduledEventsProfile.cs new file mode 100644 index 000000000000..adb596896ddb --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ScheduledEventsProfile.cs @@ -0,0 +1,50 @@ +// +// 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.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class ScheduledEventsProfile + { + /// + /// Initializes a new instance of the ScheduledEventsProfile class. + /// + public ScheduledEventsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScheduledEventsProfile class. + /// + /// Specifies Terminate + /// Scheduled Event related configurations. + public ScheduledEventsProfile(TerminateNotificationProfile terminateNotificationProfile = default(TerminateNotificationProfile)) + { + TerminateNotificationProfile = terminateNotificationProfile; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies Terminate Scheduled Event related + /// configurations. + /// + [JsonProperty(PropertyName = "terminateNotificationProfile")] + public TerminateNotificationProfile TerminateNotificationProfile { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TerminateNotificationProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TerminateNotificationProfile.cs new file mode 100644 index 000000000000..734e97adc35a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TerminateNotificationProfile.cs @@ -0,0 +1,68 @@ +// +// 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.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class TerminateNotificationProfile + { + /// + /// Initializes a new instance of the TerminateNotificationProfile + /// class. + /// + public TerminateNotificationProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TerminateNotificationProfile + /// class. + /// + /// Configurable length of time a + /// Virtual Machine being deleted will have to potentially approve the + /// Terminate Scheduled Event before the event is auto approved (timed + /// out). The configuration must be specified in ISO 8601 format, the + /// default value is 5 minutes (PT5M) + /// Specifies whether the Terminate Scheduled + /// event is enabled or disabled. + public TerminateNotificationProfile(string notBeforeTimeout = default(string), bool? enable = default(bool?)) + { + NotBeforeTimeout = notBeforeTimeout; + Enable = enable; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets configurable length of time a Virtual Machine being + /// deleted will have to potentially approve the Terminate Scheduled + /// Event before the event is auto approved (timed out). The + /// configuration must be specified in ISO 8601 format, the default + /// value is 5 minutes (PT5M) + /// + [JsonProperty(PropertyName = "notBeforeTimeout")] + public string NotBeforeTimeout { get; set; } + + /// + /// Gets or sets specifies whether the Terminate Scheduled event is + /// enabled or disabled. + /// + [JsonProperty(PropertyName = "enable")] + public bool? Enable { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateVMProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateVMProfile.cs index d9588e910b72..67a85ffa14d9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateVMProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateVMProfile.cs @@ -43,7 +43,9 @@ public VirtualMachineScaleSetUpdateVMProfile() /// extension profile. /// The license type, which is for bring your /// own license scenario. - public VirtualMachineScaleSetUpdateVMProfile(VirtualMachineScaleSetUpdateOSProfile osProfile = default(VirtualMachineScaleSetUpdateOSProfile), VirtualMachineScaleSetUpdateStorageProfile storageProfile = default(VirtualMachineScaleSetUpdateStorageProfile), VirtualMachineScaleSetUpdateNetworkProfile networkProfile = default(VirtualMachineScaleSetUpdateNetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), VirtualMachineScaleSetExtensionProfile extensionProfile = default(VirtualMachineScaleSetExtensionProfile), string licenseType = default(string)) + /// Specifies Scheduled Event + /// related configurations. + public VirtualMachineScaleSetUpdateVMProfile(VirtualMachineScaleSetUpdateOSProfile osProfile = default(VirtualMachineScaleSetUpdateOSProfile), VirtualMachineScaleSetUpdateStorageProfile storageProfile = default(VirtualMachineScaleSetUpdateStorageProfile), VirtualMachineScaleSetUpdateNetworkProfile networkProfile = default(VirtualMachineScaleSetUpdateNetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), VirtualMachineScaleSetExtensionProfile extensionProfile = default(VirtualMachineScaleSetExtensionProfile), string licenseType = default(string), ScheduledEventsProfile scheduledEventsProfile = default(ScheduledEventsProfile)) { OsProfile = osProfile; StorageProfile = storageProfile; @@ -51,6 +53,7 @@ public VirtualMachineScaleSetUpdateVMProfile() DiagnosticsProfile = diagnosticsProfile; ExtensionProfile = extensionProfile; LicenseType = licenseType; + ScheduledEventsProfile = scheduledEventsProfile; CustomInit(); } @@ -96,5 +99,11 @@ public VirtualMachineScaleSetUpdateVMProfile() [JsonProperty(PropertyName = "licenseType")] public string LicenseType { get; set; } + /// + /// Gets or sets specifies Scheduled Event related configurations. + /// + [JsonProperty(PropertyName = "scheduledEventsProfile")] + public ScheduledEventsProfile ScheduledEventsProfile { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetVMProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetVMProfile.cs index 682bdb4ee2ad..6ba79e85671b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetVMProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetVMProfile.cs @@ -62,7 +62,9 @@ public VirtualMachineScaleSetVMProfile() /// virtual machines in a low priority scale set. /// <br><br>Minimum api-version: 2017-10-30-preview. /// Possible values include: 'Deallocate', 'Delete' - public VirtualMachineScaleSetVMProfile(VirtualMachineScaleSetOSProfile osProfile = default(VirtualMachineScaleSetOSProfile), VirtualMachineScaleSetStorageProfile storageProfile = default(VirtualMachineScaleSetStorageProfile), VirtualMachineScaleSetNetworkProfile networkProfile = default(VirtualMachineScaleSetNetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), VirtualMachineScaleSetExtensionProfile extensionProfile = default(VirtualMachineScaleSetExtensionProfile), string licenseType = default(string), string priority = default(string), string evictionPolicy = default(string)) + /// Specifies Scheduled Event + /// related configurations. + public VirtualMachineScaleSetVMProfile(VirtualMachineScaleSetOSProfile osProfile = default(VirtualMachineScaleSetOSProfile), VirtualMachineScaleSetStorageProfile storageProfile = default(VirtualMachineScaleSetStorageProfile), VirtualMachineScaleSetNetworkProfile networkProfile = default(VirtualMachineScaleSetNetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), VirtualMachineScaleSetExtensionProfile extensionProfile = default(VirtualMachineScaleSetExtensionProfile), string licenseType = default(string), string priority = default(string), string evictionPolicy = default(string), ScheduledEventsProfile scheduledEventsProfile = default(ScheduledEventsProfile)) { OsProfile = osProfile; StorageProfile = storageProfile; @@ -72,6 +74,7 @@ public VirtualMachineScaleSetVMProfile() LicenseType = licenseType; Priority = priority; EvictionPolicy = evictionPolicy; + ScheduledEventsProfile = scheduledEventsProfile; CustomInit(); } @@ -151,6 +154,12 @@ public VirtualMachineScaleSetVMProfile() [JsonProperty(PropertyName = "evictionPolicy")] public string EvictionPolicy { get; set; } + /// + /// Gets or sets specifies Scheduled Event related configurations. + /// + [JsonProperty(PropertyName = "scheduledEventsProfile")] + public ScheduledEventsProfile ScheduledEventsProfile { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index c053c7e8c782..f3c2557f651f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -50,10 +50,10 @@ public static IEnumerable> ApiInfo_ComputeManageme // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "latest"; public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\\hylee-sdk\\july2\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=G:\\Code\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "6b6a445819212313e466b2f77f8b3e6d4f9d18fb"; + public static readonly String GithubCommidId = "ab88105b1fd4d8b982869c43b1fbf365f24fc0af"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs index 144a3c47eed0..3eb7d47becc5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs @@ -202,6 +202,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// /// /// Headers that will be added to request. /// @@ -223,7 +227,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -252,6 +256,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); + tracingParameters.Add("expand", expand); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); @@ -264,6 +269,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs index 16f27dc33505..70648d15dff0 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs @@ -283,9 +283,13 @@ public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, /// /// The instance ID of the virtual machine. /// - public static VirtualMachineScaleSetVM Get(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// + public static VirtualMachineScaleSetVM Get(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, InstanceViewTypes? expand = default(InstanceViewTypes?)) { - return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, vmScaleSetName, instanceId, expand).GetAwaiter().GetResult(); } /// @@ -303,12 +307,16 @@ public static VirtualMachineScaleSetVM Get(this IVirtualMachineScaleSetVMsOperat /// /// The instance ID of the virtual machine. /// + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index eaa17c7aeae4..5566dcc5ceee 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -6,12 +6,16 @@ Microsoft.Azure.Management.Compute Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. - 28.0.0 + 28.1.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index 1aeea81bd1b2..a6e33a51e9e2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] [assembly: AssemblyVersion("28.0.0.0")] -[assembly: AssemblyFileVersion("28.0.0.0")] +[assembly: AssemblyFileVersion("28.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ScheduledEvents.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ScheduledEvents.json new file mode 100644 index 000000000000..4e4837409113 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ScheduledEvents.json @@ -0,0 +1,3748 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e43831fc-1d59-47bc-80ac-024328790993" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132011404655634111" + ], + "x-ms-request-id": [ + "00c7163c-88c5-4fb7-b615-16e1636eb82a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2f3dec8b-ae24-470c-87f9-194409511f2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235209Z:2f3dec8b-ae24-470c-87f9-194409511f2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar4132?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQxMzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4132\": \"2019-08-05 23:52:09Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a46b8d1d-8c54-44d8-ae8c-038d1a528dfe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cb5150a5-7d51-49d3-ac82-45caa53be4d6" + ], + "x-ms-correlation-request-id": [ + "cb5150a5-7d51-49d3-ac82-45caa53be4d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235211Z:cb5150a5-7d51-49d3-ac82-45caa53be4d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132\",\r\n \"name\": \"crptestar4132\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4132\": \"2019-08-05 23:52:09Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar4132?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQxMzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13b7e83d-6aba-4746-bfc3-f54b9ad4c346" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "54295ca5-67f7-4599-82fe-b2d95ee4f99c" + ], + "x-ms-correlation-request-id": [ + "54295ca5-67f7-4599-82fe-b2d95ee4f99c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235242Z:54295ca5-67f7-4599-82fe-b2d95ee4f99c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132\",\r\n \"name\": \"crptestar4132\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Storage/storageAccounts/crptestar3603?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIzNjAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cdc27bb-5714-4a81-b86d-a1f5cbceb7e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/c86beb7e-c657-49f1-9fba-d1f59218897d?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c86beb7e-c657-49f1-9fba-d1f59218897d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d6a96e8d-45cf-448f-a94f-85bfb5714973" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235213Z:d6a96e8d-45cf-448f-a94f-85bfb5714973" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/c86beb7e-c657-49f1-9fba-d1f59218897d?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYzg2YmViN2UtYzY1Ny00OWYxLTlmYmEtZDFmNTkyMTg4OTdkP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "abc47d9d-6f66-4841-96e9-cbb70b56aa16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f9a2f31a-9eb5-4c76-bb66-f3c710bf345d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235230Z:f9a2f31a-9eb5-4c76-bb66-f3c710bf345d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9add5e74-f5c2-4977-af51-8b7e21b3eadb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "adc45ba3-e9aa-4d75-98ce-fd5ea8d2d705" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "427ccdc3-42cf-48fd-8798-5d28442a6dae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235241Z:427ccdc3-42cf-48fd-8798-5d28442a6dae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "741" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Storage/storageAccounts/crptestar3603\",\r\n \"name\": \"crptestar3603\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T23:52:13.2261286Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar3603.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar3603.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar3603.table.core.windows.net/\",\r\n \"file\": \"https://crptestar3603.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Storage/storageAccounts/crptestar3603?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIzNjAzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9515f9a9-e41c-46ce-a390-7975339249e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "19ed594e-2888-4da7-a156-c75aaff6ebe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "3dd1ae1a-574b-4f0a-806d-c35a53385b9b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235241Z:3dd1ae1a-574b-4f0a-806d-c35a53385b9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "729" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Storage/storageAccounts/crptestar3603\",\r\n \"name\": \"crptestar3603\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-08-05T23:52:13.2261286Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar3603.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar3603.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar3603.table.core.windows.net/\",\r\n \"file\": \"https://crptestar3603.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/VMScaleSetDoesNotExist?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL1ZNU2NhbGVTZXREb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d032004-6586-4093-80a0-52e741fe64ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f7fb1034-0302-475e-a1b1-b758512670ef" + ], + "x-ms-correlation-request-id": [ + "f7fb1034-0302-475e-a1b1-b758512670ef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235241Z:f7fb1034-0302-475e-a1b1-b758512670ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk5NzA/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9470\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71f42af2-f803-410e-81e7-55a1e9814a70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "201" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "411297b9-f1a0-416f-9cea-907587139c61" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus2/operations/411297b9-f1a0-416f-9cea-907587139c61?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "751a9281-d91e-47f1-8e9b-92635fb715ba" + ], + "x-ms-arm-service-request-id": [ + "1d74018c-4f40-468c-b240-5745f41c16f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235244Z:751a9281-d91e-47f1-8e9b-92635fb715ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "782" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip9970\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970\",\r\n \"etag\": \"W/\\\"c9375828-3122-4710-859d-034d8fc3f32b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"343255c3-34c8-4741-a2d1-0bdd2f907ae9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9470\",\r\n \"fqdn\": \"dn9470.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus2/operations/411297b9-f1a0-416f-9cea-907587139c61?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQxMTI5N2I5LWYxYTAtNDE2Zi05Y2VhLTkwNzU4NzEzOWM2MT9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "522efce8-3ed1-41e6-9c7d-80183be7f9cb" + ], + "x-ms-correlation-request-id": [ + "e7509c1e-b2ee-4506-b3b1-f11220681ff6" + ], + "x-ms-arm-service-request-id": [ + "d96eec0f-429b-4a26-a008-31be229dd1f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235246Z:e7509c1e-b2ee-4506-b3b1-f11220681ff6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk5NzA/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ff19edf8-9cec-4468-b4b9-b045d6cd6c81\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "407a18d7-982b-4e01-9e84-ec1f36b42978" + ], + "x-ms-correlation-request-id": [ + "e653db47-960a-4c65-8f0c-8bc8d0cf27ba" + ], + "x-ms-arm-service-request-id": [ + "ca7a4d90-b26e-4425-ba99-386e7cfe574f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235246Z:e653db47-960a-4c65-8f0c-8bc8d0cf27ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "783" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip9970\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970\",\r\n \"etag\": \"W/\\\"ff19edf8-9cec-4468-b4b9-b045d6cd6c81\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"343255c3-34c8-4741-a2d1-0bdd2f907ae9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9470\",\r\n \"fqdn\": \"dn9470.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk5NzA/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06e9974c-d547-4a85-b60a-e70f87f0edd9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ff19edf8-9cec-4468-b4b9-b045d6cd6c81\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "2f4135be-f42d-48e2-8922-1580064277fa" + ], + "x-ms-correlation-request-id": [ + "24c1bd1e-b496-43b0-8861-86b4e96366f4" + ], + "x-ms-arm-service-request-id": [ + "c22ca4ff-7a1a-4e8b-8de5-16aeef8f201e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235246Z:24c1bd1e-b496-43b0-8861-86b4e96366f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "783" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip9970\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/publicIPAddresses/pip9970\",\r\n \"etag\": \"W/\\\"ff19edf8-9cec-4468-b4b9-b045d6cd6c81\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"343255c3-34c8-4741-a2d1-0bdd2f907ae9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9470\",\r\n \"fqdn\": \"dn9470.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjMyMz9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn5285\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d228130-28fc-40a5-bebf-4be2df605754" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "396" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f6353d46-2209-4ad2-817e-94dc07666a80" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus2/operations/f6353d46-2209-4ad2-817e-94dc07666a80?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "593d4c8d-7928-45a0-9306-4e22cba3dfaa" + ], + "x-ms-arm-service-request-id": [ + "1857dfeb-1dba-4ef4-8eed-aee9ce3ef14c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235247Z:593d4c8d-7928-45a0-9306-4e22cba3dfaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn323\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323\",\r\n \"etag\": \"W/\\\"d95cff9f-63ca-4027-8b7a-fed145b53251\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb0b0cc5-478a-4acf-bebd-1630057be8c6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5285\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\",\r\n \"etag\": \"W/\\\"d95cff9f-63ca-4027-8b7a-fed145b53251\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus2/operations/f6353d46-2209-4ad2-817e-94dc07666a80?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MzUzZDQ2LTIyMDktNGFkMi04MTdlLTk0ZGMwNzY2NmE4MD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6159e9aa-de0f-40cf-84d6-9b627e85e0c3" + ], + "x-ms-correlation-request-id": [ + "114df139-eb87-4b95-bc9c-ae974b4ddb28" + ], + "x-ms-arm-service-request-id": [ + "cd64c89c-d4f0-4257-972a-a2848dd03a5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235250Z:114df139-eb87-4b95-bc9c-ae974b4ddb28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjMyMz9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "03c1e0e1-4482-4e42-97d9-99f5a8c81be6" + ], + "x-ms-correlation-request-id": [ + "9a814658-98c1-4106-a4ef-b2fdb6cb4ece" + ], + "x-ms-arm-service-request-id": [ + "4140ddc9-fef6-455c-805b-1a9a42f891d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235250Z:9a814658-98c1-4106-a4ef-b2fdb6cb4ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn323\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323\",\r\n \"etag\": \"W/\\\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb0b0cc5-478a-4acf-bebd-1630057be8c6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5285\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\",\r\n \"etag\": \"W/\\\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjMyMy9zdWJuZXRzL3NuNTI4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f01fa008-7443-46db-b0e2-39369d40a545" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ecbc9b7e-9bd1-4f5b-878a-82c49b296920" + ], + "x-ms-correlation-request-id": [ + "917de20c-2b19-4972-8ec2-8241e879215b" + ], + "x-ms-arm-service-request-id": [ + "0f7b82b2-c418-4284-99ae-50f0418c298c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235250Z:917de20c-2b19-4972-8ec2-8241e879215b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "419" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn5285\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\",\r\n \"etag\": \"W/\\\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzNjY/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5285\",\r\n \"etag\": \"W/\\\"3fc2dda0-3e42-44cc-98b7-1ef22babfec5\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n }\r\n },\r\n \"name\": \"ip4447\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4f88c9c-cc15-46ab-9f97-b19719a62059" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "700" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "65be950b-be84-4deb-818d-66990fa4d2e2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/eastus2/operations/65be950b-be84-4deb-818d-66990fa4d2e2?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "664a382c-bcf2-4c8b-a7b3-1876d3b7b104" + ], + "x-ms-arm-service-request-id": [ + "6cfa0e74-6788-43ec-84ca-725ebc212966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235252Z:664a382c-bcf2-4c8b-a7b3-1876d3b7b104" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5366\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f801597-dbe4-4104-80c7-084d3d979fa5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4447\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366/ipConfigurations/ip4447\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yugax02ki5huvpv3cyyak45iyg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzNjY/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30d78ee5-01a0-47ad-95c1-2a2d1bc8b7a2" + ], + "x-ms-correlation-request-id": [ + "9d5506a6-366c-4384-884d-58a30cf39c44" + ], + "x-ms-arm-service-request-id": [ + "f8eed89f-b973-401e-8904-b6063e03c694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235252Z:9d5506a6-366c-4384-884d-58a30cf39c44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5366\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f801597-dbe4-4104-80c7-084d3d979fa5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4447\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366/ipConfigurations/ip4447\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yugax02ki5huvpv3cyyak45iyg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzNjY/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53dce154-793a-4487-84a8-e2a7e9ea0e1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9d9d14ef-6a95-4995-8fbd-547e05eb63c5" + ], + "x-ms-correlation-request-id": [ + "b5f3be12-3927-4849-afd3-928db22bf11b" + ], + "x-ms-arm-service-request-id": [ + "3012d3d1-b068-4082-a70a-815774cd204c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235252Z:b5f3be12-3927-4849-afd3-928db22bf11b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5366\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f801597-dbe4-4104-80c7-084d3d979fa5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4447\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/networkInterfaces/nic5366/ipConfigurations/ip4447\",\r\n \"etag\": \"W/\\\"1e9ee9d2-aff8-43cd-86de-5f829c38d928\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yugax02ki5huvpv3cyyak45iyg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[PLACEHOLDEr1]\",\r\n \"customData\": \"Q3VzdG9tIGRhdGE=\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig9329\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3370\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"applicationGatewayBackendAddressPools\": []\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"scheduledEventsProfile\": {\r\n \"terminateNotificationProfile\": {\r\n \"notBeforeTimeout\": \"PT6M\",\r\n \"enable\": true\r\n }\r\n }\r\n },\r\n \"overprovision\": true\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df4b0242-d454-4e4f-ab9b-c572741bdac4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1793" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:52:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796" + ], + "x-ms-request-charge": [ + "4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7aecd694-c3be-4822-84ef-ba860b854b21" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "fc8e3b91-6e06-4898-8e10-a6c13dccee0a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235254Z:fc8e3b91-6e06-4898-8e10-a6c13dccee0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2458" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss2072\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig9329\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3370\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"scheduledEventsProfile\": {\r\n \"terminateNotificationProfile\": {\r\n \"notBeforeTimeout\": \"PT6M\",\r\n \"enable\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"eb9e006b-84ca-495c-aeff-bc7673d17bf0\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhZWNkNjk0LWMzYmUtNDgyMi04NGVmLWJhODYwYjg1NGIyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:53:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "97" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ad4e1cc-8112-4c4b-beab-88d72c7b817e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d79bb2df-7e2a-4769-b53e-fd656f7d0b5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235304Z:d79bb2df-7e2a-4769-b53e-fd656f7d0b5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:52:53.9845497-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7aecd694-c3be-4822-84ef-ba860b854b21\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhZWNkNjk0LWMzYmUtNDgyMi04NGVmLWJhODYwYjg1NGIyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:54:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "64d5cc96-9f8e-4efc-9d88-ca09c99954c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c51465ce-7480-4d3d-9cc6-ea345d183601" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235442Z:c51465ce-7480-4d3d-9cc6-ea345d183601" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:52:53.9845497-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7aecd694-c3be-4822-84ef-ba860b854b21\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhZWNkNjk0LWMzYmUtNDgyMi04NGVmLWJhODYwYjg1NGIyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:56:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "46cf51a7-c0b0-4a20-949a-1034cf5e9ee1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "fdb60c59-9f3e-4956-a9a0-f326a841ac69" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235619Z:fdb60c59-9f3e-4956-a9a0-f326a841ac69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:52:53.9845497-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7aecd694-c3be-4822-84ef-ba860b854b21\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhZWNkNjk0LWMzYmUtNDgyMi04NGVmLWJhODYwYjg1NGIyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:57:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af684c65-4406-4dad-ac03-81bafb8ff50e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "750150a9-4079-4bc5-828d-20c008d37c4f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235757Z:750150a9-4079-4bc5-828d-20c008d37c4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:52:53.9845497-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7aecd694-c3be-4822-84ef-ba860b854b21\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/7aecd694-c3be-4822-84ef-ba860b854b21?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhZWNkNjk0LWMzYmUtNDgyMi04NGVmLWJhODYwYjg1NGIyMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ebd0dc3-3783-4ac3-b0f1-dfa768b5586a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8a36481f-5211-4ee0-8ae6-6b8a122df83a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235934Z:8a36481f-5211-4ee0-8ae6-6b8a122df83a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:52:53.9845497-07:00\",\r\n \"endTime\": \"2019-08-05T16:58:39.9242477-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7aecd694-c3be-4822-84ef-ba860b854b21\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;198,Microsoft.Compute/GetVMScaleSet30Min;1298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eb15f964-88c9-462d-a4c9-461b5f943671" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "53916113-dd71-41f0-af03-df436765a99f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235934Z:53916113-dd71-41f0-af03-df436765a99f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2459" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss2072\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig9329\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3370\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"scheduledEventsProfile\": {\r\n \"terminateNotificationProfile\": {\r\n \"notBeforeTimeout\": \"PT6M\",\r\n \"enable\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"eb9e006b-84ca-495c-aeff-bc7673d17bf0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd12a62a-4156-4d80-aaa8-9a4cb14018e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;197,Microsoft.Compute/GetVMScaleSet30Min;1297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa62a16e-456f-4a01-9f9d-dcc37e504ea3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e99cc262-595e-4f74-9d48-d5e6a82e9ffd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235934Z:e99cc262-595e-4f74-9d48-d5e6a82e9ffd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2459" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss2072\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig9329\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3370\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"scheduledEventsProfile\": {\r\n \"terminateNotificationProfile\": {\r\n \"notBeforeTimeout\": \"PT6M\",\r\n \"enable\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"eb9e006b-84ca-495c-aeff-bc7673d17bf0\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072/instanceView?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyL2luc3RhbmNlVmlldz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "462ecc46-3b35-4919-a7e1-a8859bb8e78a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06ab6753-343e-45c4-b09c-37facd6e7173" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "17514abd-3a7f-4408-82bb-b2cc55cb896d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235935Z:17514abd-3a7f-4408-82bb-b2cc55cb896d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "445" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"virtualMachine\": {\r\n \"statusesSummary\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"count\": 1\r\n },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"count\": 1\r\n }\r\n ]\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2019-08-05T16:58:39.8461233-07:00\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11ba1cd8-3504-44d3-a5ac-0e05fbaa787f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8657c04b-7db2-4824-bc31-de68724e64be" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "267f9cf0-b223-49fd-9f3c-fb17f5eae78c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235935Z:267f9cf0-b223-49fd-9f3c-fb17f5eae78c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2768" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss2072\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 128\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaceConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig9329\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"enableAcceleratedNetworking\": false,\r\n \"dnsSettings\": {\r\n \"dnsServers\": []\r\n },\r\n \"enableIPForwarding\": false,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"vmsstestnetconfig3370\",\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Network/virtualNetworks/vn323/subnets/sn5285\"\r\n },\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"scheduledEventsProfile\": {\r\n \"terminateNotificationProfile\": {\r\n \"notBeforeTimeout\": \"PT6M\",\r\n \"enable\": true\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"eb9e006b-84ca-495c-aeff-bc7673d17bf0\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072/skus?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyL3NrdXM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6dbdf393-8a0e-44bf-abc8-198dfdc9a210" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "178c44fc-da34-4099-834e-d4ea94d93f53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "fef6715a-f90c-4f0a-9dae-9dfbf8839c77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235935Z:fef6715a-f90c-4f0a-9dae-9dfbf8839c77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "8756" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n },\r\n {\r\n \"resourceType\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"capacity\": {\r\n \"minimum\": 0,\r\n \"maximum\": 100,\r\n \"defaultCapacity\": 1,\r\n \"scaleType\": \"Automatic\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4132/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2072?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQxMzIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lU2NhbGVTZXRzL3Ztc3MyMDcyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cba469da-91d5-43a9-b4ed-7213486c7f17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?monitor=true&api-version=2019-03-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796" + ], + "x-ms-request-charge": [ + "4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aa2e91d4-55bb-4779-b14b-3918a01db297" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "34762138-2085-48f1-9cca-6f4a7f27572d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235935Z:34762138-2085-48f1-9cca-6f4a7f27572d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3b25c56-a63c-4936-9c90-830764bcb6e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "504ed189-7e26-46eb-8c69-bca74da46398" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235946Z:504ed189-7e26-46eb-8c69-bca74da46398" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 05 Aug 2019 23:59:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29978" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9872781f-5bcc-4409-b6a5-8325172302cb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "43de6d0a-4e2c-4266-8e5f-485787e0c04f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190805T235957Z:43de6d0a-4e2c-4266-8e5f-485787e0c04f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:00:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29977" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d542dbf5-26a9-4303-9870-dab0924a9d23" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "0d9e16fb-381b-4ed4-ba8b-fe57b1d330f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000008Z:0d9e16fb-381b-4ed4-ba8b-fe57b1d330f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:00:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29976" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be007ae4-3b94-4017-b1a7-d15ab2918e89" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "9059fc29-7520-4849-8273-8e681c525509" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000019Z:9059fc29-7520-4849-8273-8e681c525509" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:00:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b15b1f3f-de08-4941-a2db-427091bd0630" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "8a31949f-fc6b-41d8-a063-bf5af2f633e1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000030Z:8a31949f-fc6b-41d8-a063-bf5af2f633e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:00:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4c29463-66e9-4ad4-8939-12dc44899d53" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "21142259-ee25-4aa9-bb2e-0f2b5cf9ed65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000041Z:21142259-ee25-4aa9-bb2e-0f2b5cf9ed65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:00:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f87c5b58-2958-493c-ab54-7673ddc84af4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "9dfbfecb-1265-44da-95ff-b1b8c63a4f6e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000052Z:9dfbfecb-1265-44da-95ff-b1b8c63a4f6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29972" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "152d1362-14f8-4a14-aaff-901ee7ad4ff3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "46664625-fdb7-432a-bf09-fe4d432a244f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000103Z:46664625-fdb7-432a-bf09-fe4d432a244f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b4cf0b3a-8c88-4a3a-adee-c9773e0c52b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2054f4ea-a45a-4b0a-8af4-03019887444a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000114Z:2054f4ea-a45a-4b0a-8af4-03019887444a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9fd754b7-9e6a-4891-b9cd-6fa41d76b51d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "1ae7f161-208e-48e3-9706-20299726373a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000126Z:1ae7f161-208e-48e3-9706-20299726373a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97eab3af-ce09-45f0-89c6-73685d60cbef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "6bedfcbd-e9a8-45ed-b5e5-d7033d961c96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000137Z:6bedfcbd-e9a8-45ed-b5e5-d7033d961c96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29967" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e4385123-05b7-492a-97b8-dece3460ab5f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "ef057a6f-f778-4d68-a026-964e121d1e0e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000148Z:ef057a6f-f778-4d68-a026-964e121d1e0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29965" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7978f2d0-b35b-4b2f-bb3d-f7a4681454e5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "d0887d77-131e-4bf3-a62f-18e6491d76cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000159Z:d0887d77-131e-4bf3-a62f-18e6491d76cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-08-05T16:59:35.7214827-07:00\",\r\n \"endTime\": \"2019-08-05T17:01:53.1442445-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aa2e91d4-55bb-4779-b14b-3918a01db297\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/eastus2/operations/aa2e91d4-55bb-4779-b14b-3918a01db297?monitor=true&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FhMmU5MWQ0LTU1YmItNDc3OS1iMTRiLTM5MThhMDFkYjI5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/28.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:01:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29964" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "013517f3-89bb-4597-a258-052d7206e9dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "8731c2b0-9b5c-4606-9ef3-e325818463e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000159Z:8731c2b0-9b5c-4606-9ef3-e325818463e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar4132?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQxMzI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3040efc2-d567-4ef0-8d26-83e9fad8c317" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:02:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "59207969-de1f-43a4-8853-493d83817633" + ], + "x-ms-correlation-request-id": [ + "59207969-de1f-43a4-8853-493d83817633" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000201Z:59207969-de1f-43a4-8853-493d83817633" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:02:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "32818d1a-166c-47be-80f1-7c4258aaa1cd" + ], + "x-ms-correlation-request-id": [ + "32818d1a-166c-47be-80f1-7c4258aaa1cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000216Z:32818d1a-166c-47be-80f1-7c4258aaa1cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:02:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "aef8fc14-ce2d-45c2-a143-031890e6a079" + ], + "x-ms-correlation-request-id": [ + "aef8fc14-ce2d-45c2-a143-031890e6a079" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000231Z:aef8fc14-ce2d-45c2-a143-031890e6a079" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:02:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "83b2ea0e-c6d4-4fa1-928f-7577a44b51d1" + ], + "x-ms-correlation-request-id": [ + "83b2ea0e-c6d4-4fa1-928f-7577a44b51d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000258Z:83b2ea0e-c6d4-4fa1-928f-7577a44b51d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:03:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "8a46390b-9253-4029-81d6-09bb7188dce4" + ], + "x-ms-correlation-request-id": [ + "8a46390b-9253-4029-81d6-09bb7188dce4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000313Z:8a46390b-9253-4029-81d6-09bb7188dce4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:03:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "70bc8910-d554-4e94-b211-40c2313dc98b" + ], + "x-ms-correlation-request-id": [ + "70bc8910-d554-4e94-b211-40c2313dc98b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000329Z:70bc8910-d554-4e94-b211-40c2313dc98b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:03:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "0948f3ea-7355-49b2-bd09-63d188755744" + ], + "x-ms-correlation-request-id": [ + "0948f3ea-7355-49b2-bd09-63d188755744" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000344Z:0948f3ea-7355-49b2-bd09-63d188755744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:03:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "6193f4a2-2294-4fc3-8735-a0246c05bc83" + ], + "x-ms-correlation-request-id": [ + "6193f4a2-2294-4fc3-8735-a0246c05bc83" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000359Z:6193f4a2-2294-4fc3-8735-a0246c05bc83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:04:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "d705d67c-262d-4425-9523-b8bc5409d8ca" + ], + "x-ms-correlation-request-id": [ + "d705d67c-262d-4425-9523-b8bc5409d8ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000414Z:d705d67c-262d-4425-9523-b8bc5409d8ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:04:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "fcfae714-e640-42bb-837b-4ccd142d7066" + ], + "x-ms-correlation-request-id": [ + "fcfae714-e640-42bb-837b-4ccd142d7066" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000429Z:fcfae714-e640-42bb-837b-4ccd142d7066" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:04:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "331ed78a-0a7e-4acd-a8d2-b3fdf11876d0" + ], + "x-ms-correlation-request-id": [ + "331ed78a-0a7e-4acd-a8d2-b3fdf11876d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000445Z:331ed78a-0a7e-4acd-a8d2-b3fdf11876d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:04:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "95e18df1-9483-4cd4-b162-ca59fc1fcffb" + ], + "x-ms-correlation-request-id": [ + "95e18df1-9483-4cd4-b162-ca59fc1fcffb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000500Z:95e18df1-9483-4cd4-b162-ca59fc1fcffb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:05:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "c41610bc-04fd-4fe0-8c1d-c8423ea7e181" + ], + "x-ms-correlation-request-id": [ + "c41610bc-04fd-4fe0-8c1d-c8423ea7e181" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000515Z:c41610bc-04fd-4fe0-8c1d-c8423ea7e181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MTMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkwTVRNeUxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 00:05:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "708ff307-7757-4c8e-afd0-9ce2bf1f6b00" + ], + "x-ms-correlation-request-id": [ + "708ff307-7757-4c8e-afd0-9ce2bf1f6b00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T000515Z:708ff307-7757-4c8e-afd0-9ce2bf1f6b00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "TestScaleSetOperationsInternal": [ + "crptestar4132", + "vmss2072", + "crptestar3603" + ], + "CreatePublicIP": [ + "pip9970", + "dn9470" + ], + "CreateVNET": [ + "vn323", + "sn5285" + ], + "CreateNIC": [ + "nic5366", + "ip4447" + ], + "CreateDefaultVMScaleSetInput": [ + "crptestar6560", + "vmss5170", + "vmsstestnetconfig9329", + "vmsstestnetconfig3370" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs index 1eb985a86425..3e932be655a4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/VMScaleSetTests/VMScaleSetScenarioTests.cs @@ -174,8 +174,45 @@ public void TestVMScaleSetScenarioOperations_PpgScenario() } } + [Fact] + [Trait("Name", "TestVMScaleSetScenarioOperations_ScheduledEvents")] + public void TestVMScaleSetScenarioOperations_ScheduledEvents() + { + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + try + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + TestScaleSetOperationsInternal(context, hasManagedDisks: true, useVmssExtension: false, + vmScaleSetCustomizer: + vmScaleSet => + { + vmScaleSet.VirtualMachineProfile.ScheduledEventsProfile = new ScheduledEventsProfile + { + TerminateNotificationProfile = new TerminateNotificationProfile + { + Enable = true, + NotBeforeTimeout = "PT6M", + } + }; + }, + vmScaleSetValidator: vmScaleSet => + { + Assert.True(true == vmScaleSet.VirtualMachineProfile.ScheduledEventsProfile?.TerminateNotificationProfile?.Enable); + Assert.True("PT6M" == vmScaleSet.VirtualMachineProfile.ScheduledEventsProfile?.TerminateNotificationProfile?.NotBeforeTimeout); + }); + } + } + finally + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + } + } + private void TestScaleSetOperationsInternal(MockContext context, string vmSize = null, bool hasManagedDisks = false, bool useVmssExtension = true, - bool hasDiffDisks = false, IList zones = null, int? osDiskSizeInGB = null, bool isPpgScenario = false, bool? enableUltraSSD = false) + bool hasDiffDisks = false, IList zones = null, int? osDiskSizeInGB = null, bool isPpgScenario = false, bool? enableUltraSSD = false, + Action vmScaleSetCustomizer = null, Action vmScaleSetValidator = null) { EnsureClientsInitialized(context); @@ -221,6 +258,7 @@ private void TestScaleSetOperationsInternal(MockContext context, string vmSize = { vmScaleSet.Sku.Name = vmSize; } + vmScaleSetCustomizer?.Invoke(vmScaleSet); }, createWithManagedDisks: hasManagedDisks, hasDiffDisks : hasDiffDisks, @@ -266,6 +304,8 @@ private void TestScaleSetOperationsInternal(MockContext context, string vmSize = } } + vmScaleSetValidator?.Invoke(getResponse); + m_CrpClient.VirtualMachineScaleSets.Delete(rgName, vmssName); } finally diff --git a/sdk/core/Azure.Core/tests/TestFramework.props b/sdk/core/Azure.Core/tests/TestFramework.props index 500b7dde92ba..4405893d6393 100644 --- a/sdk/core/Azure.Core/tests/TestFramework.props +++ b/sdk/core/Azure.Core/tests/TestFramework.props @@ -1,7 +1,27 @@  + + SessionRecords + + + + + + <_CopyItems Include="$(OutputPath)\netcoreapp2.1\SessionRecords\**\*.*" /> + + + + + + diff --git a/sdk/core/Azure.Core/tests/TestFramework/RecordTransport.cs b/sdk/core/Azure.Core/tests/TestFramework/RecordTransport.cs index 84aa60443143..4992caf7cf8c 100644 --- a/sdk/core/Azure.Core/tests/TestFramework/RecordTransport.cs +++ b/sdk/core/Azure.Core/tests/TestFramework/RecordTransport.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Diagnostics; +using System.Globalization; using System.IO; using System.Linq; using System.Threading; @@ -94,6 +95,12 @@ public RecordEntry CreateEntry(Request request, Response response) entry.RequestHeaders.Add(requestHeader.Name, headerValues.ToArray()); } + // Make sure we record Content-Length even if it's not set explicitly + if (!request.Headers.TryGetValue("Content-Length", out _) && request.Content != null && request.Content.TryComputeLength(out long computedLength)) + { + entry.RequestHeaders.Add("Content-Length", new [] { computedLength.ToString(CultureInfo.InvariantCulture) }); + } + foreach (HttpHeader responseHeader in response.Headers) { var gotHeader = response.Headers.TryGetValues(responseHeader.Name, out IEnumerable headerValues); diff --git a/sdk/core/Microsoft.Extensions.Azure/src/msbuild.binlog b/sdk/core/Microsoft.Extensions.Azure/src/msbuild.binlog deleted file mode 100644 index f2a93e6e546e..000000000000 Binary files a/sdk/core/Microsoft.Extensions.Azure/src/msbuild.binlog and /dev/null differ diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftTableDataset.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftTableDataset.cs new file mode 100644 index 000000000000..0352f4be6a71 --- /dev/null +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AmazonRedshiftTableDataset.cs @@ -0,0 +1,107 @@ +// +// 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.DataFactory.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The Amazon Redshift table dataset. + /// + [Newtonsoft.Json.JsonObject("AmazonRedshiftTable")] + [Rest.Serialization.JsonTransformation] + public partial class AmazonRedshiftTableDataset : Dataset + { + /// + /// Initializes a new instance of the AmazonRedshiftTableDataset class. + /// + public AmazonRedshiftTableDataset() + { + LinkedServiceName = new LinkedServiceReference(); + CustomInit(); + } + + /// + /// Initializes a new instance of the AmazonRedshiftTableDataset class. + /// + /// Linked service reference. + /// Unmatched properties from the + /// message are deserialized this collection + /// Dataset description. + /// Columns that define the structure of the + /// dataset. Type: array (or Expression with resultType array), + /// itemType: DatasetDataElement. + /// Columns that define the physical type schema + /// of the dataset. Type: array (or Expression with resultType array), + /// itemType: DatasetSchemaDataElement. + /// Parameters for dataset. + /// List of tags that can be used for + /// describing the Dataset. + /// The folder that this Dataset is in. If not + /// specified, Dataset will appear at the root level. + /// This property will be retired. Please + /// consider using schema + table properties instead. + /// The Amazon Redshift table name. Type: string + /// (or Expression with resultType string). + /// The Amazon Redshift + /// schema name. Type: string (or Expression with resultType + /// string). + public AmazonRedshiftTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object), object table = default(object), object amazonRedshiftTableDatasetSchema = default(object)) + : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) + { + TableName = tableName; + Table = table; + AmazonRedshiftTableDatasetSchema = amazonRedshiftTableDatasetSchema; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property will be retired. Please consider using + /// schema + table properties instead. + /// + [JsonProperty(PropertyName = "typeProperties.tableName")] + public object TableName { get; set; } + + /// + /// Gets or sets the Amazon Redshift table name. Type: string (or + /// Expression with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.table")] + public object Table { get; set; } + + /// + /// Gets or sets the Amazon Redshift schema name. Type: string (or + /// Expression with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.schema")] + public object AmazonRedshiftTableDatasetSchema { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs new file mode 100644 index 000000000000..833052d405ae --- /dev/null +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/AzureMySqlSink.cs @@ -0,0 +1,71 @@ +// +// 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.DataFactory.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A copy activity Azure MySql sink. + /// + public partial class AzureMySqlSink : CopySink + { + /// + /// Initializes a new instance of the AzureMySqlSink class. + /// + public AzureMySqlSink() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureMySqlSink class. + /// + /// Unmatched properties from the + /// message are deserialized this collection + /// Write batch size. Type: integer (or + /// Expression with resultType integer), minimum: 0. + /// Write batch timeout. Type: string + /// (or Expression with resultType string), pattern: + /// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// Sink retry count. Type: integer (or + /// Expression with resultType integer). + /// Sink retry wait. Type: string (or + /// Expression with resultType string), pattern: + /// ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). + /// The maximum concurrent + /// connection count for the sink data store. Type: integer (or + /// Expression with resultType integer). + /// A query to execute before starting the + /// copy. Type: string (or Expression with resultType string). + public AzureMySqlSink(IDictionary additionalProperties = default(IDictionary), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object preCopyScript = default(object)) + : base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections) + { + PreCopyScript = preCopyScript; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a query to execute before starting the copy. Type: + /// string (or Expression with resultType string). + /// + [JsonProperty(PropertyName = "preCopyScript")] + public object PreCopyScript { get; set; } + + } +} diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/Db2TableDataset.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/Db2TableDataset.cs new file mode 100644 index 000000000000..ada85bf54b53 --- /dev/null +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/Db2TableDataset.cs @@ -0,0 +1,106 @@ +// +// 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.DataFactory.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The Db2 table dataset. + /// + [Newtonsoft.Json.JsonObject("Db2Table")] + [Rest.Serialization.JsonTransformation] + public partial class Db2TableDataset : Dataset + { + /// + /// Initializes a new instance of the Db2TableDataset class. + /// + public Db2TableDataset() + { + LinkedServiceName = new LinkedServiceReference(); + CustomInit(); + } + + /// + /// Initializes a new instance of the Db2TableDataset class. + /// + /// Linked service reference. + /// Unmatched properties from the + /// message are deserialized this collection + /// Dataset description. + /// Columns that define the structure of the + /// dataset. Type: array (or Expression with resultType array), + /// itemType: DatasetDataElement. + /// Columns that define the physical type schema + /// of the dataset. Type: array (or Expression with resultType array), + /// itemType: DatasetSchemaDataElement. + /// Parameters for dataset. + /// List of tags that can be used for + /// describing the Dataset. + /// The folder that this Dataset is in. If not + /// specified, Dataset will appear at the root level. + /// This property will be retired. Please + /// consider using schema + table properties instead. + /// The Db2 schema name. Type: + /// string (or Expression with resultType string). + /// The Db2 table name. Type: string (or Expression + /// with resultType string). + public Db2TableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object), object db2TableDatasetSchema = default(object), object table = default(object)) + : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) + { + TableName = tableName; + Db2TableDatasetSchema = db2TableDatasetSchema; + Table = table; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property will be retired. Please consider using + /// schema + table properties instead. + /// + [JsonProperty(PropertyName = "typeProperties.tableName")] + public object TableName { get; set; } + + /// + /// Gets or sets the Db2 schema name. Type: string (or Expression with + /// resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.schema")] + public object Db2TableDatasetSchema { get; set; } + + /// + /// Gets or sets the Db2 table name. Type: string (or Expression with + /// resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.table")] + public object Table { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/NetezzaTableDataset.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/NetezzaTableDataset.cs index f810e7c96630..6d7938fb2b52 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/NetezzaTableDataset.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/NetezzaTableDataset.cs @@ -51,12 +51,19 @@ public NetezzaTableDataset() /// describing the Dataset. /// The folder that this Dataset is in. If not /// specified, Dataset will appear at the root level. - /// The table name. Type: string (or Expression - /// with resultType string). - public NetezzaTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object)) + /// This property will be retired. Please + /// consider using schema + table properties instead. + /// The table name of the Netezza. Type: string (or + /// Expression with resultType string). + /// The schema name of the + /// Netezza. Type: string (or Expression with resultType + /// string). + public NetezzaTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object), object table = default(object), object netezzaTableDatasetSchema = default(object)) : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) { TableName = tableName; + Table = table; + NetezzaTableDatasetSchema = netezzaTableDatasetSchema; CustomInit(); } @@ -66,12 +73,26 @@ public NetezzaTableDataset() partial void CustomInit(); /// - /// Gets or sets the table name. Type: string (or Expression with - /// resultType string). + /// Gets or sets this property will be retired. Please consider using + /// schema + table properties instead. /// [JsonProperty(PropertyName = "typeProperties.tableName")] public object TableName { get; set; } + /// + /// Gets or sets the table name of the Netezza. Type: string (or + /// Expression with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.table")] + public object Table { get; set; } + + /// + /// Gets or sets the schema name of the Netezza. Type: string (or + /// Expression with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.schema")] + public object NetezzaTableDatasetSchema { get; set; } + /// /// Validate the object. /// diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/PostgreSqlTableDataset.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/PostgreSqlTableDataset.cs index eaf05eb41919..5b8ec4b6dd9b 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/PostgreSqlTableDataset.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/PostgreSqlTableDataset.cs @@ -51,12 +51,18 @@ public PostgreSqlTableDataset() /// describing the Dataset. /// The folder that this Dataset is in. If not /// specified, Dataset will appear at the root level. - /// The PostgreSQL table name. Type: string (or + /// This property will be retired. Please + /// consider using schema + table properties instead. + /// The PostgreSQL table name. Type: string (or /// Expression with resultType string). - public PostgreSqlTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object)) + /// The PostgreSQL schema + /// name. Type: string (or Expression with resultType string). + public PostgreSqlTableDataset(LinkedServiceReference linkedServiceName, IDictionary additionalProperties = default(IDictionary), string description = default(string), object structure = default(object), object schema = default(object), IDictionary parameters = default(IDictionary), IList annotations = default(IList), DatasetFolder folder = default(DatasetFolder), object tableName = default(object), object table = default(object), object postgreSqlTableDatasetSchema = default(object)) : base(linkedServiceName, additionalProperties, description, structure, schema, parameters, annotations, folder) { TableName = tableName; + Table = table; + PostgreSqlTableDatasetSchema = postgreSqlTableDatasetSchema; CustomInit(); } @@ -66,12 +72,26 @@ public PostgreSqlTableDataset() partial void CustomInit(); /// - /// Gets or sets the PostgreSQL table name. Type: string (or Expression - /// with resultType string). + /// Gets or sets this property will be retired. Please consider using + /// schema + table properties instead. /// [JsonProperty(PropertyName = "typeProperties.tableName")] public object TableName { get; set; } + /// + /// Gets or sets the PostgreSQL table name. Type: string (or Expression + /// with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.table")] + public object Table { get; set; } + + /// + /// Gets or sets the PostgreSQL schema name. Type: string (or + /// Expression with resultType string). + /// + [JsonProperty(PropertyName = "typeProperties.schema")] + public object PostgreSqlTableDatasetSchema { get; set; } + /// /// Validate the object. /// diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/SdkInfo_DataFactoryManagementClient.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/SdkInfo_DataFactoryManagementClient.cs index 390c039b61fc..1d5b778524b6 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/SdkInfo_DataFactoryManagementClient.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Generated/SdkInfo_DataFactoryManagementClient.cs @@ -39,10 +39,10 @@ public static IEnumerable> ApiInfo_DataFactoryMana // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "latest"; public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\\Git\\AdmsSdkChange\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=C:\\Users\\xiaoyz\\Source\\Repos\\azure-sdk-for-net-wenbo\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "694f153a2f2eb22fdab6035ba9dc9eaaf375a386"; + public static readonly String GithubCommidId = "f80a6c182c85879a415d4c668473c592147416f3"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Microsoft.Azure.Management.DataFactory.csproj b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Microsoft.Azure.Management.DataFactory.csproj index 8b478ae981f4..aa8f8af793e2 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Microsoft.Azure.Management.DataFactory.csproj +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Microsoft.Azure.Management.DataFactory.csproj @@ -5,7 +5,7 @@ Microsoft.Azure.Management.DataFactory Azure Data Factory V2 is the data integration platform that goes beyond Azure Data Factory V1's orchestration and batch-processing of time-series data, with a general purpose app model supporting modern data warehousing patterns and scenarios, lift-and-shift SSIS, and data-driven SaaS applications. Compose and manage reliable and secure data integration workflows at scale. Use native ADF data connectors and Integration Runtimes to move and transform cloud and on-premises data that can be unstructured, semi-structured, and structured with Hadoop, Azure Data Lake, Spark, SQL Server, Cosmos DB and many other data platforms. - 4.1.3 + 4.1.4 Microsoft.Azure.Management.DataFactory Microsoft Azure resource management;Data Factory;ADF; diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Properties/AssemblyInfo.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Properties/AssemblyInfo.cs index 85bda750b04b..17582e1d7bb3 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Properties/AssemblyInfo.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure Data Factory Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Data Factory Resources.")] [assembly: AssemblyVersion("4.1.0.0")] -[assembly: AssemblyFileVersion("4.1.3.0")] +[assembly: AssemblyFileVersion("4.1.4.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/changelog.md b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/changelog.md index 7a51f2800d2f..d95e42381e91 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/changelog.md +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/src/changelog.md @@ -5,6 +5,8 @@ - AvroDataset will support following locations AzureBlobStorageLocation, AzureBlobFSLocation, AzureDataLakeStoreLocation, AmazonS3Location, FileServerLocation, FtpServerLocation, SftpLocation, HttpServerLocation, HdfsLocation - Added new Copy sources - AvroSource - Added new Copy sinks - AvroSink +- Added support for the following new datasets in ADF - AmazonRedshiftTableDataset, AzureMySqlSink, Db2TableDataset +- Split tableName to schema and table in NetezzaTableDataset and PostgreSqlTableDataset. ### Feature Additions ## Version 4.1.2 diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/DatasetJsonSamples.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/DatasetJsonSamples.cs index cd12e1436109..f59730338425 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/DatasetJsonSamples.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/DatasetJsonSamples.cs @@ -1610,6 +1610,78 @@ public class DatasetJsonSamples : JsonSampleCollection } } } +"; + [JsonSample] + public const string NetezzaDatasetV2 = @" +{ + name: ""NetezzaDataset"", + properties: { + type: ""NetezzaTable"", + linkedServiceName: { + referenceName: ""ls"", + type: ""LinkedServiceReference"" + }, + typeProperties: + { + schema: ""dbo"", + table: ""testtable"" + } + } +} +"; + [JsonSample] + public const string PostgreSqlDataset = @" +{ + name: ""PostgreSqlDataset"", + properties: { + type: ""PostgreSqlTable"", + linkedServiceName: { + referenceName: ""ls"", + type: ""LinkedServiceReference"" + }, + typeProperties: + { + schema: ""dbo"", + table: ""testtable"" + } + } +} +"; + [JsonSample] + public const string AmazonRedshiftTableDataset = @" +{ + name: ""AmazonRedshiftTableDataset"", + properties: { + type: ""AmazonRedshiftTable"", + linkedServiceName: { + referenceName: ""ls"", + type: ""LinkedServiceReference"" + }, + typeProperties: + { + schema: ""dbo"", + table: ""testtable"" + } + } +} +"; + [JsonSample] + public const string Db2TableDataset = @" +{ + name: ""Db2TableDataset"", + properties: { + type: ""Db2Table"", + linkedServiceName: { + referenceName: ""ls"", + type: ""LinkedServiceReference"" + }, + typeProperties: + { + schema: ""dbo"", + table: ""testtable"" + } + } +} "; } } diff --git a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/PipelineJsonSamples.cs b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/PipelineJsonSamples.cs index e2251f34e2fd..c868ea22dc00 100644 --- a/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/PipelineJsonSamples.cs +++ b/sdk/datafactory/Microsoft.Azure.Management.DataFactory/tests/JsonSamples/PipelineJsonSamples.cs @@ -4836,6 +4836,42 @@ public class PipelineJsonSamples : JsonSampleCollection ] } } +"; + [JsonSample(version: "Copy")] + public const string AzureMySqlSinkPipeline = @" +{ + name: ""DataPipeline_AzureMySqlSinkSample"", + properties: + { + activities: + [ + { + name: ""Db2ToPostgreSqlCopyActivity"", + inputs: [ {referenceName: ""DA_Input"", type: ""DatasetReference""} ], + outputs: [ {referenceName: ""DA_Output"", type: ""DatasetReference""} ], + type: ""Copy"", + typeProperties: + { + source: + { + type: ""Db2Source"", + query: ""select * from faketable"" + }, + sink: + { + type: ""AzureMySqlSink"", + preCopyScript: ""fake script"" + } + }, + policy: + { + retry: 2, + timeout: ""01:00:00"" + } + } + ] + } +} "; [JsonSample(version: "Copy")] diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/README.md b/sdk/eventhub/Azure.Messaging.EventHubs/README.md index 8a1b5ef0db66..3bdd527a4d09 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/README.md +++ b/sdk/eventhub/Azure.Messaging.EventHubs/README.md @@ -31,7 +31,7 @@ To quickly create the needed Event Hubs resources in Azure and to receive a conn Install the Azure Event Hubs client library for .NET with [NuGet](https://www.nuget.org/): ```PowerShell -Install-Package Azure.Messaging.EventHubs -Version 5.0.0-preview.1 +Install-Package Azure.Messaging.EventHubs -Version 5.0.0-preview.2 ``` ### Obtain a connection string diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample12_ConsumeEventsWithEventProcessor.cs b/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample12_ConsumeEventsWithEventProcessor.cs index e46d0d97043a..8892733e85c2 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample12_ConsumeEventsWithEventProcessor.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/samples/Sample12_ConsumeEventsWithEventProcessor.cs @@ -2,7 +2,12 @@ // Licensed under the MIT License. using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; using System.Threading.Tasks; +using Azure.Messaging.EventHubs.Processor; using Azure.Messaging.EventHubs.Samples.Infrastructure; namespace Azure.Messaging.EventHubs.Samples @@ -35,17 +40,249 @@ public class Sample12_ConsumeEventsWithEventProcessor : IEventHubsSample public async Task RunAsync(string connectionString, string eventHubName) { - // We will start by creating a client using its default set of options. + // We will start by creating a client using its default set of options. It will be used by the event processor to + // communicate with the Azure Event Hubs service. await using (var client = new EventHubClient(connectionString, eventHubName)) { - //TODO (caio, pri1): Populate the sample + // An event processor is associated with a specific Event Hub and a consumer group. It receives events from + // all partitions in the Event Hub, passing them to the user for processing. + // + // A partition processor is associated with a specific partition and is responsible for processing events when + // requested by the event processor. An instance is provided to the event processor when requested from a + // factory function, and takes the form of a class which implements the IPartitionProcessor interface. + // + // The factory function is provided to the event processor when it is created. The factory is responsible for + // creating a partition processor based on two arguments: + // + // A partition context: contains information about the partition the partition processor will be processing + // events from. In this sample, we are only interested in its partition id. + // + // A checkpoint manager: responsible for the creation of checkpoints. It's not used in this sample. + // + // We'll be using a SamplePartitionProcessor, whose implementation can be found at the end of this sample. Its + // constructor takes the associated partition id so it can provide useful log messages. + + Func partitionProcessorFactory = + (partitionContext, checkpointManager) => new SamplePartitionProcessor(partitionContext.PartitionId); + + // A partition manager may create checkpoints and list/claim partition ownership. The user can implement their + // own partition manager by creating a subclass from the PartitionManager abstract class. Here we are creating + // a new instance of an InMemoryPartitionManager, provided by the Azure.Messaging.EventHubs.Processor namespace. + // This isn't relevant to understanding this sample, but is required by the event processor constructor. + + PartitionManager partitionManager = new InMemoryPartitionManager(); + + // It's also possible to specify custom options upon event processor creation. We want to receive events from + // the latest available position so older events don't interfere with our sample. We also don't want to wait + // more than 1 second for every set of events. + + EventProcessorOptions eventProcessorOptions = new EventProcessorOptions + { + InitialEventPosition = EventPosition.Latest, + MaximumReceiveWaitTime = TimeSpan.FromSeconds(1) + }; + + // Let's finally create our event processor. We're using the default consumer group that was created with the Event Hub. + + EventProcessor eventProcessor = new EventProcessor(EventHubConsumer.DefaultConsumerGroupName, client, partitionProcessorFactory, partitionManager, eventProcessorOptions); + + // Once started, the event processor will start to receive events from all partitions. + + Console.WriteLine("Starting the event processor."); + Console.WriteLine(); + + await eventProcessor.StartAsync(); + + Console.WriteLine(); + Console.WriteLine("Event processor started."); + + // To test our event processor, we are publishing 10 sets of events to the Event Hub. Notice that we are not + // specifying a partition to send events to, so these sets may end up in different partitions. + + EventData[] eventsToPublish = new EventData[] + { + new EventData(Encoding.UTF8.GetBytes("I am not the second event.")), + new EventData(Encoding.UTF8.GetBytes("I am not the first event.")) + }; + + int amountOfSets = 10; + int expectedAmountOfEvents = amountOfSets * eventsToPublish.Length; + + await using (EventHubProducer producer = client.CreateProducer()) + { + Console.WriteLine(); + Console.WriteLine("Sending events to the Event Hub."); + Console.WriteLine(); + + for (int i = 0; i < amountOfSets; i++) + { + await producer.SendAsync(eventsToPublish); + } + } + + // Because there is some non-determinism in the messaging flow, the sent events may not be immediately + // available. For this reason, we wait 500 ms before resuming. + + await Task.Delay(500); + + // Once stopped, the event processor won't receive events anymore. In case there are still events being + // processed when the stop method is called, the processing will complete before the corresponding partition + // processor is closed. + + Console.WriteLine(); + Console.WriteLine("Stopping the event processor."); + Console.WriteLine(); + + await eventProcessor.StopAsync(); + + // Print out the amount of events that we received. + + Console.WriteLine(); + Console.WriteLine($"Amount of events received: { SamplePartitionProcessor.TotalEventsCount }. Expected: { expectedAmountOfEvents }."); } - // At this point, our client, all consumers, and producer have passed their "using" scope and have safely been disposed of. We + // At this point, our client and producer have passed their "using" scope and have safely been disposed of. We // have no further obligations. Console.WriteLine(); } + + /// + /// A sample implementation of . It makes use of a static integer to count + /// the amount of received events across all existing instances of this class. + /// + /// + /// + /// All implemented methods are asynchronous, which means they're expected to return a Task. This approach is + /// specially useful when the processing is done by thread-blocking services. + /// + /// The implementations found in this sample are synchronous and simply return a + /// to match the return type. + /// + /// + private class SamplePartitionProcessor : IPartitionProcessor + { + /// Keeps track of the amount of received events across all existing instances of this class. + private static int s_totalEventsCount = 0; + + /// + /// Keeps track of the amount of received events across all existing instances of this class. + /// + /// + public static int TotalEventsCount { get => s_totalEventsCount; } + + /// + /// The identifier of the Event Hub partition this partition processor is associated with. Used in + /// log messages. + /// + /// + private readonly string PartitionId; + + /// + /// Initializes a new instance of the class. + /// + /// + /// The identifier of the Event Hub partition this partition processor is associated with. + /// + public SamplePartitionProcessor(string partitionId) + { + PartitionId = partitionId; + + Console.WriteLine($"\tPartition '{ PartitionId }': partition processor successfully created."); + } + + /// + /// Initializes the partition processor. + /// + /// + /// A task to be resolved on when the operation has completed. + /// + public Task InitializeAsync() + { + // This is the last piece of code guaranteed to run before event processing, so all initialization + // must be done by the moment this method returns. + + Console.WriteLine($"\tPartition '{ PartitionId }': partition processor successfully initialized."); + + // This method is asynchronous, which means it's expected to return a Task. + + return Task.CompletedTask; + } + + /// + /// Closes the partition processor. + /// + /// + /// The reason why the partition processor is being closed. + /// + /// A task to be resolved on when the operation has completed. + /// + public Task CloseAsync(PartitionProcessorCloseReason reason) + { + // The code to be run when closing the partition processor. This is the right place to dispose + // of objects that will no longer be used. + + Console.WriteLine($"\tPartition '{ PartitionId }': partition processor successfully closed. Reason: { reason }."); + + // This method is asynchronous, which means it's expected to return a Task. + + return Task.CompletedTask; + } + + /// + /// Processes a set of received . + /// + /// + /// The received events to be processed. + /// A instance to signal the request to cancel the operation. It's not used in this sample. + /// + /// A task to be resolved on when the operation has completed. + /// + public Task ProcessEventsAsync(IEnumerable events, CancellationToken cancellationToken) + { + // Here the user can specify what to do with the events received from the event processor. We are counting how + // many events were received across all instances of this class so we can check whether all sent events were received. + // + // It's important to notice that this method is called even when no events are received after the maximum wait time, which + // can be specified by the user in the event processor options. In this case, the IEnumerable events is empty, but not null. + + int eventsCount = events.Count(); + + if (eventsCount > 0) + { + Interlocked.Add(ref s_totalEventsCount, eventsCount); + Console.WriteLine($"\tPartition '{ PartitionId }': { eventsCount } event(s) received."); + } + + // This method is asynchronous, which means it's expected to return a Task. + + return Task.CompletedTask; + } + + /// + /// Processes an unexpected exception thrown when is running. + /// + /// + /// The exception to be processed. It's not used in this sample. + /// A instance to signal the request to cancel the operation. It's not used in this sample. + /// + /// A task to be resolved on when the operation has completed. + /// + public Task ProcessErrorAsync(Exception exception, CancellationToken cancellationToken) + { + // All the unhandled exceptions encountered during the event processor execution are passed to this method so + // the user can decide how to handle them. + // + // This piece of code is not supposed to be reached by this sample. If the following message has been printed + // to the Console, then something unexpected has happened. + + Console.WriteLine($"\tPartition '{ PartitionId }': an unhandled exception was encountered. This was not expected to happen."); + + // This method is asynchronous, which means it's expected to return a Task. + + return Task.CompletedTask; + } + } } } diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/src/Core/ChannelEnumerableSubscription.cs b/sdk/eventhub/Azure.Messaging.EventHubs/src/Core/ChannelEnumerableSubscription.cs index 1a184299caeb..6daf76d19939 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/src/Core/ChannelEnumerableSubscription.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/src/Core/ChannelEnumerableSubscription.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Diagnostics; +using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Channels; using System.Threading.Tasks; @@ -112,7 +113,7 @@ public async ValueTask DisposeAsync() /// private static async IAsyncEnumerable EnumerateChannel(ChannelReader reader, TimeSpan? maximumWaitTime, - CancellationToken cancellationToken) + [EnumeratorCancellation]CancellationToken cancellationToken) { T result; int delayMilliseconds; diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/InMemoryPartitionManager.cs b/sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/InMemoryPartitionManager.cs old mode 100644 new mode 100755 index 1f70b01abf33..74198b227b3c --- a/sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/InMemoryPartitionManager.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/src/Processor/InMemoryPartitionManager.cs @@ -56,7 +56,7 @@ public override Task> ListOwnershipAsync(string { List ownershipList; - lock(OwnershipClaimLock) + lock (OwnershipClaimLock) { ownershipList = Ownership.Values .Where(ownership => ownership.EventHubName == eventHubName && diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpEventBatchTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpEventBatchTests.cs index ada700101a98..67fed0a07eea 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpEventBatchTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpEventBatchTests.cs @@ -17,7 +17,6 @@ namespace Azure.Messaging.EventHubs.Tests /// class. /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class AmqpEventBatchTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpMessageConverterTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpMessageConverterTests.cs index 25f00a6f7ccf..3c9aa509135f 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpMessageConverterTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/AmqpMessageConverterTests.cs @@ -19,7 +19,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class AmqpMessageConverterTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/TypeExtensionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/TypeExtensionsTests.cs index 93488899d8b5..6d1a52f9a602 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/TypeExtensionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Amqp/TypeExtensionsTests.cs @@ -15,7 +15,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TypeExtensionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubSharedKeyCredentialTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubSharedKeyCredentialTests.cs index bf73eae6e638..a77d6542b42c 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubSharedKeyCredentialTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubSharedKeyCredentialTests.cs @@ -14,7 +14,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubSharedKeyCredentialTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubTokenCredentialTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubTokenCredentialTests.cs index c4472a732e18..f665a4974def 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubTokenCredentialTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/EventHubTokenCredentialTests.cs @@ -19,7 +19,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubTokenCredentialTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureCredentialTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureCredentialTests.cs index ba53873c94a2..42568ecde0a0 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureCredentialTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureCredentialTests.cs @@ -15,7 +15,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class SharedAccessSignatureCredentialTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureTests.cs index 17bc80d827bb..555f7aa7c118 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Authorization/SharedAccessSignatureTests.cs @@ -15,7 +15,6 @@ namespace Azure.Messaging.EventHubs.Tests.Authorization /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class SharedAccessSignatureTests { /// A string that is 300 characters long, breaking invariants for argument maximum lengths. diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneComparerTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneComparerTests.cs index 5007ad41134f..d717af0b19ed 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneComparerTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneComparerTests.cs @@ -13,7 +13,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneComparerTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubClientTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubClientTests.cs index e46614fcd3bc..4c14b505a12f 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubClientTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubClientTests.cs @@ -23,7 +23,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneEventHubClientTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubConsumerTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubConsumerTests.cs index 97a9c64adaf8..eda93df9e0a5 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubConsumerTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubConsumerTests.cs @@ -21,7 +21,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneEventHubConsumerTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubProducerTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubProducerTests.cs index e3a02b70f4fe..42c8a0e00235 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubProducerTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneEventHubProducerTests.cs @@ -25,7 +25,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneEventHubProducerTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneExceptionExtensionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneExceptionExtensionsTests.cs index 28c50c92111c..aa0cdbcd6ecb 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneExceptionExtensionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneExceptionExtensionsTests.cs @@ -16,7 +16,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneExceptionExtensionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenProviderTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenProviderTests.cs index 8dc2eedb6047..9316eb136502 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenProviderTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenProviderTests.cs @@ -20,7 +20,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneGenericTokenProviderTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenTests.cs index a3698079bb8a..683e78122503 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneGenericTokenTests.cs @@ -16,7 +16,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneGenericTokenTokenTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneRetryPolicyTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneRetryPolicyTests.cs index a4ffb2348544..272d33996939 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneRetryPolicyTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneRetryPolicyTests.cs @@ -14,7 +14,6 @@ namespace Azure.Messaging.EventHubs.Tests /// class. /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneRetryPolicyTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessSignatureTokenProviderTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessSignatureTokenProviderTests.cs index a397db3d69ec..8f147768a0e2 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessSignatureTokenProviderTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessSignatureTokenProviderTests.cs @@ -16,7 +16,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneSharedAccessSignatureTokenProviderTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessTokenTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessTokenTests.cs index bf1935a3675a..6cb4626e9c4e 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessTokenTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Compatibility/TrackOneSharedAccessTokenTests.cs @@ -15,7 +15,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class TrackOneSharedAccessSignatureTokenTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ChannelEnumeratorSubscriptionTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ChannelEnumeratorSubscriptionTests.cs index ff52ed26c6fb..14ded034a75d 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ChannelEnumeratorSubscriptionTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ChannelEnumeratorSubscriptionTests.cs @@ -19,7 +19,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class ChannelEnumeratorSubscriptionTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionStringParserTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionStringParserTests.cs index e41227f406ad..fd2ec6390583 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionStringParserTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionStringParserTests.cs @@ -14,7 +14,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class ConnectionStringParserTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionTypeExtensionTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionTypeExtensionTests.cs index 9c6a441f4203..dfe6c440e898 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionTypeExtensionTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/ConnectionTypeExtensionTests.cs @@ -13,7 +13,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class ConnectionTypeExtensionTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/GuardTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/GuardTests.cs index 2d15aac1aefd..ff9b0b4603da 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/GuardTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Core/GuardTests.cs @@ -14,7 +14,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class GuardTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Errors/EventHubsExceptionTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Errors/EventHubsExceptionTests.cs index 062612127071..157ddaee5755 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Errors/EventHubsExceptionTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Errors/EventHubsExceptionTests.cs @@ -15,7 +15,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubsExceptionTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientOptionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientOptionsTests.cs index c1fb903f02c6..4222f736b8be 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientOptionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientOptionsTests.cs @@ -10,7 +10,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubClientOptionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientTests.cs index a384049121b1..e1cf5303e1e4 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubClient/EventHubClientTests.cs @@ -22,7 +22,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubClientTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerOptionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerOptionsTests.cs index 769326ed517c..fa855da8f3ad 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerOptionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerOptionsTests.cs @@ -9,7 +9,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubConsumerOptionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerTests.cs index 7c04793b78b2..1210f7ae8afc 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubConsumer/EventHubConsumerTests.cs @@ -24,7 +24,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubConsumerTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/BatchOptionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/BatchOptionsTests.cs index fb86e489c090..55b8a709d79e 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/BatchOptionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/BatchOptionsTests.cs @@ -9,7 +9,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class BatchOptionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventDataBatchTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventDataBatchTests.cs index a05397b23ce0..0ace0aa9dbf0 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventDataBatchTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventDataBatchTests.cs @@ -11,7 +11,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventDataBatchTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerOptionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerOptionsTests.cs index 44f794a0146e..b3e5107c560e 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerOptionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerOptionsTests.cs @@ -9,7 +9,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubProducerOptionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerTests.cs index 11594aeb54f9..91feda4e3992 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/EventHubProducer/EventHubProducerTests.cs @@ -19,7 +19,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventHubProducerTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/EventDataExtensionTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/EventDataExtensionTests.cs index 747499e885af..8487afe0a9b3 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/EventDataExtensionTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/EventDataExtensionTests.cs @@ -11,7 +11,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class EventDataExtensionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/RetryOptionsExtensionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/RetryOptionsExtensionsTests.cs index 7ef3541acef1..4fafd1ec5d9b 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/RetryOptionsExtensionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Infrastructure/RetryOptionsExtensionsTests.cs @@ -12,7 +12,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class RetryOptionsExtensionsTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Properties/AssemblyInfo.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Properties/AssemblyInfo.cs index f0f1c7e8cefd..5d88b2aa3371 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/Properties/AssemblyInfo.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/Properties/AssemblyInfo.cs @@ -4,5 +4,5 @@ using NUnit.Framework; -[assembly: Parallelizable(ParallelScope.Fixtures)] +[assembly: Parallelizable(ParallelScope.All)] diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/BasicRetryPolicyTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/BasicRetryPolicyTests.cs index c2d4ed02fb37..f56e6b3c5ded 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/BasicRetryPolicyTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/BasicRetryPolicyTests.cs @@ -18,7 +18,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class BasicRetryPolicyTests { /// diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/RetryOptionsTests.cs b/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/RetryOptionsTests.cs index d4c88a257633..10af8450b3ac 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/RetryOptionsTests.cs +++ b/sdk/eventhub/Azure.Messaging.EventHubs/tests/RetryPolicies/RetryOptionsTests.cs @@ -9,7 +9,6 @@ namespace Azure.Messaging.EventHubs.Tests /// /// [TestFixture] - [Parallelizable(ParallelScope.All)] public class RetryOptionsTests { /// diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorConfigurationException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorConfigurationException.cs index 93e9a0efff1e..ba2b057e3cdd 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorConfigurationException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorConfigurationException.cs @@ -16,7 +16,7 @@ internal EventProcessorConfigurationException(string message) } internal EventProcessorConfigurationException(string message, Exception innerException) - : base(false, message, innerException) + : base(false, message, innerException, ErrorSourceType.UserError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorHost.cs b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorHost.cs index c03edf46123a..c21e29f293dc 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorHost.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorHost.cs @@ -100,6 +100,7 @@ public EventProcessorHost( ICheckpointManager checkpointManager, ILeaseManager leaseManager) { + Guard.ArgumentNotNullOrWhiteSpace(nameof(hostName), hostName); Guard.ArgumentNotNullOrWhiteSpace(nameof(consumerGroupName), consumerGroupName); Guard.ArgumentNotNull(nameof(checkpointManager), checkpointManager); Guard.ArgumentNotNull(nameof(leaseManager), leaseManager); @@ -190,26 +191,92 @@ public EventProcessorHost( string storageBlobPrefix = null, TimeSpan? operationTimeout = null, TransportType transportType = TransportType.Amqp) + : this(hostName, + endpointAddress, + eventHubPath, + consumerGroupName, + tokenProvider, + new AzureStorageCheckpointLeaseManager(cloudStorageAccount, leaseContainerName, storageBlobPrefix), + operationTimeout, + transportType) + { + } + + /// + /// Create a new host to process events from an Event Hub with provided + /// + /// Fully qualified domain name for Event Hubs. Most likely, {yournamespace}.servicebus.windows.net + /// The name of the EventHub. + /// The name of the consumer group within the Event Hub. + /// Token provider which will generate security tokens for authorization. + /// Azure Storage account used for leases and checkpointing. + /// Azure Storage container name for use by built-in lease and checkpoint manager. + /// Prefix used when naming blobs within the storage container. + /// Operation timeout for Event Hubs operations. + /// Transport type on connection. + public EventProcessorHost( + Uri endpointAddress, + string eventHubPath, + string consumerGroupName, + ITokenProvider tokenProvider, + CloudStorageAccount cloudStorageAccount, + string leaseContainerName, + string storageBlobPrefix = null, + TimeSpan? operationTimeout = null, + TransportType transportType = TransportType.Amqp) + : this(EventProcessorHost.CreateHostName(null), + endpointAddress, + eventHubPath, + consumerGroupName, + tokenProvider, + cloudStorageAccount, + leaseContainerName, + storageBlobPrefix, + operationTimeout, + transportType) + { + } + + /// + /// Create a new host to process events from an Event Hub with provided + /// + /// Name of the processor host. MUST BE UNIQUE. Strongly recommend including a Guid to ensure uniqueness. + /// Fully qualified domain name for Event Hubs. Most likely, {yournamespace}.servicebus.windows.net + /// The name of the EventHub. + /// The name of the consumer group within the Event Hub. + /// Token provider which will generate security tokens for authorization. + /// Object implementing ICheckpointManager which handles partition checkpointing. + /// Object implementing ILeaseManager which handles leases for partitions. + /// Operation timeout for Event Hubs operations. + /// Transport type on connection. + public EventProcessorHost( + string hostName, + Uri endpointAddress, + string eventHubPath, + string consumerGroupName, + ITokenProvider tokenProvider, + ICheckpointManager checkpointManager, + ILeaseManager leaseManager, + TimeSpan? operationTimeout = null, + TransportType transportType = TransportType.Amqp) { Guard.ArgumentNotNullOrWhiteSpace(nameof(hostName), hostName); Guard.ArgumentNotNull(nameof(endpointAddress), endpointAddress); Guard.ArgumentNotNullOrWhiteSpace(nameof(eventHubPath), eventHubPath); Guard.ArgumentNotNullOrWhiteSpace(nameof(consumerGroupName), consumerGroupName); Guard.ArgumentNotNull(nameof(tokenProvider), tokenProvider); - Guard.ArgumentNotNull(nameof(cloudStorageAccount), cloudStorageAccount); - Guard.ArgumentNotNullOrWhiteSpace(nameof(leaseContainerName), leaseContainerName); + Guard.ArgumentNotNull(nameof(checkpointManager), checkpointManager); + Guard.ArgumentNotNull(nameof(leaseManager), leaseManager); this.HostName = hostName; this.EndpointAddress = endpointAddress; this.EventHubPath = eventHubPath; this.ConsumerGroupName = consumerGroupName; - this.OperationTimeout = operationTimeout ?? ClientConstants.DefaultOperationTimeout; - this.TransportType = TransportType; this.tokenProvider = tokenProvider; - - // Create default checkpoint-lease manager. - this.CheckpointManager = new AzureStorageCheckpointLeaseManager(cloudStorageAccount, leaseContainerName, storageBlobPrefix); - this.LeaseManager = (ILeaseManager)this.CheckpointManager; + this.CheckpointManager = checkpointManager; + this.LeaseManager = leaseManager; + this.TransportType = transportType; + this.OperationTimeout = operationTimeout ?? ClientConstants.DefaultOperationTimeout; this.PartitionManager = new PartitionManager(this); ProcessorEventSource.Log.EventProcessorHostCreated(this.HostName, this.EventHubPath); } @@ -231,6 +298,29 @@ public EventProcessorHost( { } + // Using this intermediate constructor to create single combined manager to be used as + // both lease manager and checkpoint manager. + EventProcessorHost( + string hostName, + Uri endpointAddress, + string eventHubPath, + string consumerGroupName, + ITokenProvider tokenProvider, + AzureStorageCheckpointLeaseManager combinedManager, + TimeSpan? operationTimeout = null, + TransportType transportType = TransportType.Amqp) + : this(hostName, + endpointAddress, + eventHubPath, + consumerGroupName, + tokenProvider, + combinedManager, + combinedManager, + operationTimeout, + transportType) + { + } + /// /// Returns processor host name. /// If the processor host name was automatically generated, this is the only way to get it. diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorRuntimeException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorRuntimeException.cs index 498882a4577a..bb7a193e48b8 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorRuntimeException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs.Processor/src/EventProcessorRuntimeException.cs @@ -16,7 +16,7 @@ internal EventProcessorRuntimeException(string message, string action) } internal EventProcessorRuntimeException(string message, string action, Exception innerException) - : base(true, message, innerException) + : base(true, message, innerException, ErrorSourceType.UserError) { this.Action = action; } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpEventDataSender.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpEventDataSender.cs index 948e2eeea7cc..ae4f26f76afd 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpEventDataSender.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpEventDataSender.cs @@ -166,7 +166,7 @@ async Task CreateLinkAsync(TimeSpan timeout) catch { // Cleanup any session (and thus link) in case of exception. - session?.Abort(); + session?.SafeClose(); throw; } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpPartitionReceiver.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpPartitionReceiver.cs index bade778a4542..51d2c3a607d2 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpPartitionReceiver.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Amqp/AmqpPartitionReceiver.cs @@ -251,7 +251,7 @@ async Task CreateLinkAsync(TimeSpan timeout) catch { // Cleanup any session (and thus link) in case of exception. - session?.Abort(); + session?.SafeClose(); throw; } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/EventHubsDiagnosticSource.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/EventHubsDiagnosticSource.cs index 146f4091bddc..b90d8666b89d 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/EventHubsDiagnosticSource.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/EventHubsDiagnosticSource.cs @@ -20,13 +20,13 @@ internal static class EventHubsDiagnosticSource public const string CorrelationContextPropertyName = "Correlation-Context"; public const string RelatedToTagName = "RelatedTo"; - public const string ProcessActivityName = DiagnosticSourceName + ".Process"; + public const string ProcessActivityName = "Process"; - public const string SendActivityName = DiagnosticSourceName + ".Send"; + public const string SendActivityName = "Send"; public const string SendActivityStartName = SendActivityName + ".Start"; public const string SendActivityExceptionName = SendActivityName + ".Exception"; - public const string ReceiveActivityName = DiagnosticSourceName + ".Receive"; + public const string ReceiveActivityName = "Receive"; public const string ReceiveActivityStartName = ReceiveActivityName + ".Start"; public const string ReceiveActivityExceptionName = ReceiveActivityName + ".Exception"; diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/AsyncLock.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/AsyncLock.cs index 235a9ead8dff..84d16516955f 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/AsyncLock.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/AsyncLock.cs @@ -12,16 +12,16 @@ namespace Microsoft.Azure.EventHubs /// /// Used as an asynchronous semaphore for internal Event Hubs operations. /// - public class AsyncLock : IDisposable + class AsyncLock : IDisposable { - readonly SemaphoreSlim asyncSemaphore = new SemaphoreSlim(1); + readonly SemaphoreSlim asyncSemaphore = new SemaphoreSlim(1, 1); readonly Task lockRelease; bool disposed; /// /// Returns a new AsyncLock. /// - public AsyncLock() + internal AsyncLock() { lockRelease = Task.FromResult(new LockRelease(this)); } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsCommunicationException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsCommunicationException.cs index a382a7f20cf0..d3081ce5cccd 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsCommunicationException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsCommunicationException.cs @@ -21,7 +21,7 @@ protected internal EventHubsCommunicationException(string message) /// /// protected internal EventHubsCommunicationException(string message, Exception innerException) - : base(true, message, innerException) + : base(true, message, innerException, ErrorSourceType.UserError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsException.cs index 9d13e572443b..84c7033f5098 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsException.cs @@ -10,6 +10,22 @@ namespace Microsoft.Azure.EventHubs /// public class EventHubsException : Exception { + /// + ///Enumerates the types of error sources for the messaging communication. + /// + public enum ErrorSourceType + { + /// + /// Identifies the exception as a server error and service needs to take an action to address the failure. + /// + ServerError, + + /// + /// Identifies the exception as a user error and user needs to take an action to address the failure. + /// + UserError, + } + /// /// Returns a new EventHubsException /// @@ -47,10 +63,12 @@ public EventHubsException(bool isTransient, Exception innerException) /// Specifies whether or not the exception is transient. /// The detailed message exception. /// The inner exception. - public EventHubsException(bool isTransient, string message, Exception innerException) + /// Error source of exception. + public EventHubsException(bool isTransient, string message, Exception innerException, ErrorSourceType errorSource) : base(message, innerException) { this.IsTransient = isTransient; + this.ErrorSource = errorSource; } /// @@ -80,5 +98,10 @@ public override string Message /// Gets the Event Hubs namespace from which the exception occured, if available. /// public string EventHubsNamespace { get; internal set; } + + /// + /// Gets the error source. + /// + public ErrorSourceType ErrorSource { get; private set; } } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsTimeoutException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsTimeoutException.cs index efa4ddb3162b..2d2927ee80f8 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsTimeoutException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/EventHubsTimeoutException.cs @@ -20,7 +20,7 @@ internal EventHubsTimeoutException(string message) : this(message, null) /// /// internal EventHubsTimeoutException(string message, Exception innerException) - : base(true, message, innerException) + : base(true, message, innerException, ErrorSourceType.ServerError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessageSizeExceededException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessageSizeExceededException.cs index d951f0999feb..03ed29d5083c 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessageSizeExceededException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessageSizeExceededException.cs @@ -16,7 +16,7 @@ internal MessageSizeExceededException(string message) } internal MessageSizeExceededException(string message, Exception innerException) - : base(false, message, innerException) + : base(false, message, innerException, ErrorSourceType.UserError) { } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessagingEntityNotFoundException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessagingEntityNotFoundException.cs index b9332e457e90..9e0f5260592d 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessagingEntityNotFoundException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/MessagingEntityNotFoundException.cs @@ -9,7 +9,7 @@ namespace Microsoft.Azure.EventHubs public sealed class MessagingEntityNotFoundException : EventHubsException { internal MessagingEntityNotFoundException(string message) - : base(false, message, null) + : base(false, message, null, ErrorSourceType.UserError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/QuotaExceededException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/QuotaExceededException.cs index 96de7accc4e6..ae67526cc4b1 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/QuotaExceededException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/QuotaExceededException.cs @@ -21,7 +21,7 @@ public QuotaExceededException(string message) /// /// public QuotaExceededException(string message, Exception innerException) - : base(false, message, innerException) + : base(false, message, innerException, ErrorSourceType.ServerError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ReceiverDisconnectedException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ReceiverDisconnectedException.cs index 18e406008e60..dc8e12f450c8 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ReceiverDisconnectedException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ReceiverDisconnectedException.cs @@ -17,7 +17,7 @@ internal ReceiverDisconnectedException(string message) } internal ReceiverDisconnectedException(string message, Exception innerException) - : base(false, message, innerException) + : base(false, message, innerException, ErrorSourceType.UserError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ServerBusyException.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ServerBusyException.cs index 49d7e2a779a0..6687ba71dd21 100644 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ServerBusyException.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/src/Primitives/ServerBusyException.cs @@ -16,7 +16,7 @@ internal ServerBusyException(string message) } internal ServerBusyException(string message, Exception innerException) - : base(true, message, innerException) + : base(true, message, innerException, ErrorSourceType.ServerError) { } } diff --git a/sdk/eventhub/Microsoft.Azure.EventHubs/tests/Client/DiagnosticsTests.cs b/sdk/eventhub/Microsoft.Azure.EventHubs/tests/Client/DiagnosticsTests.cs index 8b8d8d7a0a10..ed12b0a3967a 100755 --- a/sdk/eventhub/Microsoft.Azure.EventHubs/tests/Client/DiagnosticsTests.cs +++ b/sdk/eventhub/Microsoft.Azure.EventHubs/tests/Client/DiagnosticsTests.cs @@ -641,7 +641,7 @@ public void ExtractsActivityWithoutIdAsRoot(string id) protected void AssertSendStart(string name, object payload, Activity activity, Activity parentActivity, string partitionKey, EventHubsConnectionStringBuilder connectionStringBuilder, int eventCount = 1) { - Assert.Equal("Microsoft.Azure.EventHubs.Send.Start", name); + Assert.Equal("Send.Start", name); AssertCommonPayloadProperties(payload, partitionKey, connectionStringBuilder); var eventDatas = GetPropertyValueFromAnonymousTypeInstance>(payload, "EventDatas"); Assert.Equal(eventCount, eventDatas.Count); @@ -661,7 +661,7 @@ protected void AssertSendStart(string name, object payload, Activity activity, A protected void AssertSendException(string name, object payload, Activity activity, Activity parentActivity, string partitionKey, EventHubsConnectionStringBuilder connectionStringBuilder) { - Assert.Equal("Microsoft.Azure.EventHubs.Send.Exception", name); + Assert.Equal("Send.Exception", name); AssertCommonPayloadProperties(payload, partitionKey, connectionStringBuilder); GetPropertyValueFromAnonymousTypeInstance(payload, "Exception"); @@ -678,7 +678,7 @@ protected void AssertSendException(string name, object payload, Activity activit protected void AssertSendStop(string name, object payload, Activity activity, Activity sendActivity, string partitionKey, EventHubsConnectionStringBuilder connectionStringBuilder, bool isFaulted = false) { - Assert.Equal("Microsoft.Azure.EventHubs.Send.Stop", name); + Assert.Equal("Send.Stop", name); AssertCommonStopPayloadProperties(payload, partitionKey, isFaulted, connectionStringBuilder); if (sendActivity != null) @@ -696,7 +696,7 @@ protected void AssertSendStop(string name, object payload, Activity activity, Ac protected void AssertReceiveStart(string name, object payload, Activity activity, string partitionKey, EventHubsConnectionStringBuilder connectionStringBuilder) { - Assert.Equal("Microsoft.Azure.EventHubs.Receive.Start", name); + Assert.Equal("Receive.Start", name); AssertCommonPayloadProperties(payload, partitionKey, connectionStringBuilder); Assert.NotNull(activity); @@ -716,7 +716,7 @@ protected void AssertReceiveStart(string name, object payload, Activity activity protected void AssertReceiveStop(string name, object payload, Activity activity, Activity receiveActivity, string partitionKey, EventHubsConnectionStringBuilder connectionStringBuilder, bool isFaulted = false, string relatedId = null) { - Assert.Equal("Microsoft.Azure.EventHubs.Receive.Stop", name); + Assert.Equal("Receive.Stop", name); AssertCommonStopPayloadProperties(payload, partitionKey, isFaulted, connectionStringBuilder); if (receiveActivity != null) diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj index 43fc727007ac..fd0d35eeb35c 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/Azure.Security.KeyVault.Certificates.csproj @@ -26,4 +26,8 @@ + + + + diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/CertificateClient.cs b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/CertificateClient.cs index 94c27fdb37a5..1cf132a9d006 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/CertificateClient.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/src/CertificateClient.cs @@ -33,7 +33,7 @@ public CertificateClient(Uri vaultUri, TokenCredential credential, CertificateCl _pipeline = HttpPipelineBuilder.Build(options, bufferResponse: true, - new BearerTokenAuthenticationPolicy(credential, "https://vault.azure.net/.default")); + new ChallengeBasedAuthenticationPolicy(credential)); } // Certificates API diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj index 778df79ad194..eb866adccec7 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/Azure.Security.KeyVault.Keys.csproj @@ -27,6 +27,7 @@ + diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/KeyClient.cs b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/KeyClient.cs index 1f92a29db61b..47bf5b4b2bf4 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/src/KeyClient.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/src/KeyClient.cs @@ -54,7 +54,7 @@ public KeyClient(Uri vaultUri, TokenCredential credential, KeyClientOptions opti _pipeline = HttpPipelineBuilder.Build(options, bufferResponse: true, - new BearerTokenAuthenticationPolicy(credential, "https://vault.azure.net/.default")); + new ChallengeBasedAuthenticationPolicy(credential)); } /// diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.cs b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.cs index adf4e640f4c4..3efb1cee5056 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.cs @@ -19,6 +19,19 @@ public KeyClientLiveTests(bool isAsync) : base(isAsync) { } + [SetUp] + public void ClearChallengeCacheforRecord() + { + // in record mode we reset the challenge cache before each test so that the challenge call + // is always made. This allows tests to be replayed independently and in any order + if (this.Mode == RecordedTestMode.Record || this.Mode == RecordedTestMode.Playback) + { + this.Client = this.GetClient(); + + ChallengeBasedAuthenticationPolicy.AuthenticationChallenge.ClearCache(); + } + } + [Test] public async Task CreateKey() { diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKey.json index ba855b9818e1..f0d79ab3b142 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1561712251/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e8f-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "6aa38fcaff7602250f122dd2f825bfb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a7de1672-ff8c-410f-b148-fa70f09bbc67", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e8f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6aa38fcaff7602250f122dd2f825bfb8", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:34 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7a011e5-b535-4cc8-b076-ac51b668361a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ec187d39-bc2d-42f5-9c63-e5027efdcc78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1561712251/f7d5b4bef09d4d39838fee5c46c43736", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251\u002f507d64b30a154bb4b9e2f0c9e844bfc9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Ljq_NKERWvfIsovN4epPFa-zzpHYGf4hi7SvvfukT00", - "y": "7Od84qsl1zB15QGWDXz76eCHSOI_AVKuy-g-2E2gelA" + "x": "jIoq4Sa8YJgVD9VaSkA5I_hKvhz57SH-inXoqQqJ7iY", + "y": "dlsT3g3KDzLVSM0d28s3vyhd7y94SwcAIY2dHR7PR4M" }, "attributes": { "enabled": true, - "created": 1560889775, - "updated": 1560889775, + "created": 1565113339, + "updated": 1565113339, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1561712251/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e90-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2cd4cf0d62b7bc1acc0b2d92d7400de8", "x-ms-return-client-request-id": "true" @@ -74,35 +117,36 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6340", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:34 GMT", + "Content-Length": "6511", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5156c0a2-fc6e-4ecc-8e31-3b7e341a3a29", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9f4d92b0-7fa4-4051-bff6-eb30f8531fba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": "JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLlVEaExXZnZhSUpkbHE5dGYtLVVkLXRPVVRkMmd2U0xHSjZ0akFmWF9zRUNyRG1TOXV1eUZfOFhGTHJCVGkyWEhzZDVLR1FtRnp1ZW93TUdOc0hhMTJsUmY3LTRoaWl0UFpOUDJpTU1zMkVJeklhcVAzd1ZZcFEzdGdRMTZST3FidnJ2NENVX1U2SnNybHA1bkZQdloxWmtZMnZxMzZvcW1HeDlmbW1xeGRMVmxGaDJTRGNjSllOVF9zeUhJRFc0ZlAwaDhWWXEwM2prU0FhajIwVE5iRmNPZk5GY09MdF92WlR5WUkzOFJBcFhnMDVSVE84VjVLUDhLV29sSm4tZW0tSWVObW0yeWV2d1hDZGxXWGdOV1JGNTBLSTlFU3VvN2xXUWRkd2t6U21TUW5tNmQ0VW9hVXBuaktUTDU1Z3FKYlJtd25oZDBkVDR1MnRrRGJVZkFSQS5HWDBXMjluN3gxSGFXQjhaeC1NLW9BLjFVbUZmYWF5TWJzWEZYcnVsbXBpWWh1eV9tVDZLZG1vT3I0blFhNEptSks5ZjBzUnBDdlNYVHJ1ajFGNzVrT3VydFY4QUwyR1ByQXNTaE42OFk1bFpOUEk4RnFpRUotTGxma0RndnItNVNRVHJDbVBfYk5INzhmQ2hZSmlNRVJuNWoyUVlhYjN5Qkt5OXdsOVdxekxkalMxei1rVXUwbGtGT3BWd2lmR2MwaUZ1WDFCRnE1ekF0WTB4R0dfci02MDNxQmNndGpCMThsRTVRc0VFZ1hxNjJUczFPODVEWmprYkVCUXdPZ2cyWGVERlpDcUd3RUtjMXNxcGRDeUxadDVKNHBRZlpSUVBUX3JnMm1VRTdXNzdsdjl3a0o4TTdyeXM5bEREVUh3bVc2VWNUa3kwWnBtOWpZN194bHJyTmd2YU5xMVI4OWpDc24waTNIV29vUVE3UHIwZzdEMURXRHRhMmthODMyNU9mdjhnYktvOTlFc3IwdkhMSXRDUjRwV05ncUJKbHZOSXZ0SkJ6aHltbG9QYmZNei1VUnlhWnNLNTE3amdGSFhxaEtjUUVqak1PaXoyZEx0VzhJSG9Ec25oVElwUFJkX3RWTUU5NHQ1dzJRUzRfckFzdHZTYkROcGx3ZnljVDlVNTBRM2VRb0pXOWhzYk5ndGx4Vk1jOVZidl81SUVkYlFzdFhWNzBLMndpZk45RkhLMGh2REJKd3RjaTVOVGVjWkdkNzlMMEpMbDRIOHZYLTJBNzJFdmxKM2Frem5CSk9Gc3RHQXZrVGZ2XzN6Sks4MWk2eWF1Z0M5X09tMXE4OXg4UE9CYjA4ODV4MmJMZWpsdF81N0R0STh3cVRMZmtUMWRaWVpzMHpqaEJIdjNOa010eE1OTFFDUnlfRlVrQV9HT1RHbWE0UU9JLXJpM2tNclA1eWFBNGdNTnhyNFFNQ0FIX2tEbzlCdTM5WENEdzlwLV93dWRUd2VhMHN2eTdOOU9WQkdXX1ZyNmZFcXRoR05CWFp6ZzU0c0J3aXJ6ekpmSFJZbUxaUTFIUXUyTEpmTDZ4UEgtUEEtZ3lKNUtfSnM0RnZFdkpJN2VIVFdpTDRoLTN0U0lWMllMUVJBcjFsVmpRaDNkWjBHclFyWWM4WE1NLWFwcEdoQl9UV0VPTmZqLWl4eXpUSUdsbEdlVHhaVTAxSFNHS0dUclN1WFI3WC14OHJzcFBuVE9uaERiRVY4UDN4WGNYU0xUMGZpSnZ6d1E5YlR4d2x6enBrNEJibEhKQ0IySDhEV1g4ZjFGMEo1Q01FY3RrWmZ4QmhaYVBxTlU0VGtrZXdiUFZLNlZXLUVWSGhrVUVXUndUbnRyb09aRFJYa0ppYVpzOGJSVG8zMFNLMmkyVEVEQm9VcG9feE5rb0c3cGVkTk5CaGJzdGNmdHc0azdyeHpNeDJyR3d5OTI1eVJsNEd5NkFKQ25HWk9Qc0lfNFctSGxYV3BqdGhQOVFYR051TzBUTC1xSlRvYm1sRExFZF9IYTdyb2Z2YlRYbHp2NkVkNDg4dExSVjBUU2d2T2dZYnlLVk53N29GWW80eU5mR3daM1B0XzEyS0swWlBXYUFTZVZjNU0zYklraGVaQkQ3ZXRKZzRDN3VPR1JpT0lpQWg2dVlpUWZZajdsbHlaWFBFOFJ5UXpUMk9oa0VXZXhGMFVuQkNLdUlvYXFia1JidUlCMmRkX0xxZnpzckJDeDlxcUp3SHQyRXhwM1kzeEp4ZE9qWW1TSS1KNzdNQUlXY2ZNd1lPTDN0V0l1MHFSVW9jOUkxWXduakMtZ2tqelRmN3hkS05IYXRuT2lHN29YTjdOSmdqOGRmQ1V2SGNLdHJVa3VjYTBFVFBWRU9xVGVPeVI1WVB2MTl3dDRlUXJHb1czZ0lwVUU1dkd2eml4M0FrdDVkUG5RSFl4a1RHOUtuZHdzN25mZDJRRWI4eWN3elFQVXlSLVNnYUg1NlhsMjhsdTJQSE5yX3A3WTJfWC1ZdWV5U0hPMlRYRjBXSGRyTk4xWDJBTG41UnYyWTdpMnY2TFZXYWt2Ty1ybmd2STZZLVNqUDg3VmJ2NE8yYU5UMHowNlRUeWVmYVVjbDhvV3BvVm9uS0stejJhbWhsZnJoMk54T2VoVElhcktkTk5WNlNNcFM2ZVA3Yl82TDRqSWNEOHlBWlFOM05vSnd0M19TcEdURUN6ZmltbV9sSDNqZlZDaFFOdTVTa0R6YnZfdnlibVE3d1AtZVgxYkJZOW5PVGlNYlBFd3Q1aWdUd3M3Q3JUcmtsdjhmUUpXNDh5S2FSOG9vY0Vta3RsSlhwQ1NVM1YtWTkzS29fQjh4SHJpSUFQUVBKWlZxTkctSnZ5cEcyam5TMXNLeFhDUDBTMnJ1UXNGY1hwTVpPZXFzVXE0TmQzWENaTXJVeVJiVndOWFk3eGFyOXJ1VzBpVXNrS1dHUl91cW9jamhjNFJaU2s5TEl4a3ZNMV83c3pUYk5qZFB1ZVNvMTNTdDNTTTl5XzVPZFFoZVRIWkJJcFFIQUxmLXRYSGNqVFpRY1hCNlBUcEw5UGQwZGtDRUZBdUpGX1BMZHVpV042UWVfZThqNklFazg5RGl5elREZDV2ZF9wLUczenZ6OUVvYlgyc2E1QlM4clUtNVk4ZWpYM0JjWGhXdExySWliREU2R3lqLUVfWmRjTHVzRlBGMGdYc2VYdDd3UE85ZmotYm1mdXBpMmd4MUt0eW1xMTliOFJ1NEU4MEZCN0w5SnlicnFxcGN0ZVgxTm5ObmR1b2xzRVE4TmRNajNFUkxqS083OGtUME9LeTJtU3ZpUzE4dlUxRjRwUi16ODlwYzhGeVFfQlhJR1BsZnlRTXU0RVdKMnhubGZYdFgtcnNrRENRQS1qX3FGdUJ1N19JYW95U3A5SVJ3aHB4RkpxX1RCeTV5ME9uY04wOVQ1ODA2SHlCOUR0UXdkNXVVeVRxRmZSLTZxdC1GWlFMZk05Z29VSFJITmtydFByMkx0N3pfeUJpN3pzMnNHUmY4b2UyT3FXZFZUd0lwLU90eWpoQnZ5RVhIdzJSZUV6THBFNkxmOG9VeTBGWEFNMTBVZ2dxcHNwVEJZZmpkWE04dEx6VFhBOG54QlBnR3A4emItWDhJRmdvTlRCUktYWG5WZ2JtMmYtMlFhdUw0RXRoc0hTU1pmLUU5OFRjNHhpZlg3ZEhuV2xvMm1ScTdXVGpaaXJXempVMi1DSzJrbWI0dGtSOHVlMEltZUhfeHhMai1CZEhyUklwelVselNJTXNiSjBLUFZhX3pWX3hNVVlSZ2VZbmtWQjN0dDM4UFd3RmY3X1VXRXNPRTNNbnBSU2J1Uy01NklPeVZiZ2Ruc0hxOVJNQkxUZlA2cFh3d1JvRHJMQUxkdXY2U2gzeDZJcGdPM3BNZ3hsMDQ0NWRfZy04MUJZRTZ0VjVLNHFJREMxWUp3QXJvRHIxazN1MUl4STZCQV82amQ5NngyZGk3VkFQWld2R3dBc0U0MVhZVGlYQUdQRC1OUXZPZG9LNEZNNkNmTzB1dVh5Q0VWMjRCQTZiUHYwNFRkTUFaNGZpSnVPcllKWW5waUQyb2JBRE8yYXJtM1p0YlUtQWo5MGdRbEVvbUNhYkdRRVdTYW0welItSERoall6ZDdmbkpXRVpLc1VWOHVaM2FVdERwbUhzdC1CVkhrcnl2Rjh2emt0NUVZc2hkdWh5VER6LU9ZQTh1N2VvMC1ZWUtrX1dNOHdtQzhteThmUmxWR0NtVFlTQ204eG4tbWJNbzQ5aFhoU2twOGM1RHFoSXIzTWFGT0RUS256MXRNeG80UllXQ1JfTEJIaEdaaWtJYVZqWU5GNWI3VFJFcURQa1FZZ05rMUtzS01GWEpUUldEVlowUWdveXVLRkEwY0pqOUxTQW9qX0ZvNXZWcGtKc0Jzb1hXZ0N3azZPZWRqNVNBdU1yT1lqdGstano2V0sxZk43SXlNN3Z1cmtLTDE0MjhvM2d6NGtvSW16SS0ydGZlYmNlc1RIN0NGZU40N2NyTmlpR1lfSUVUT0gwdlJhRjgzVUNUT09ZdkdkNE5JM3hZTk84eVVpcURyNzdqY2UzMC1kLVBtcWpuZzZ2YmZTV3hHZHh3UDZaejdZby11aG9NS1UyTGlxdDBvamdRQ2kwMHF0dlk5aUpfRXd2Y0xvbHNQMzdkUW1qejdFMnJhVDU3elRCajI1SGQwLS1UT19oOXpTNkFnUlNrNkRHVm01WHhzQmlodkRxOUVtaEM4QWppcW8xSkJkSWdDXzM5aDFIeWE3ZVJoSmRqQi1saVItYVdUUUROZXNHSnRBTGhQaEFzTXRhYnRGUEd3UldLQW1BYzQwUWRnY0MtZW5KSmVMbkhhY3hzYVp1aGhFSDl1cVpUek91V05odW90bTdxMVdFQi1wbnVUNzN6ZEhzYlVEVzJqVzBuamdvcGFCcWxycWIzNmE3MEhuSUM1VWZiQ19TUENPdE8tTk1uVW13OTVHTEZPNGxVVmh6TGtkR21EbGJ1aWw1M1N5VUFhNW5HdWFVa1N4RmJ5emp2NnE1clJQNXYxazBwMXdKMU5sam9aTGhGNW5WVmhGT2ZSdS1vOG5RUTdzT0JjR1FsNzUyYkdYUWFiNGc0T3hIZHgwdXNLVW1menlCUXF0RmJQMXkyMmxjRFlGdWVTUmlZMTZwV2N0RHZPeW1oOVN4cHJRTkJ2a0I5SFlkaXhkTnZXaGY0eU1IeFdscjQxcVl1NkdCU1pkUGNNWlc4TkZRVWI3ZEZxYWpEQWNwZlZqVUFKNXhaYkg3RHVELUltQjYyU01DeGZsYl9oaFNEYnZxcDRqaWd1OVBiYnpZclItQVFaQjFMTjdBQks4b0dKdW9hMU1BWldqUTFmXzQwRFAyZnhZVU82QjA2UGNDTXBGcGtYUFRLbFdlb1dTdHEwN3VfLUlrSHVkTndtUGZNLVE2a2F2U3pPS3Q4VXNuNUpYLXVESjJtNkFwWnozRVZtRzJWLUpHZVp1SFFDMldidFdWaFBmVGRZQUNGV1FXVkVrWEdnQ3pJMkFOT2tWcXZGZWVjbFN0Z1RmWjl6T2xRcHlwZEFZaDZHVXVHSS1fb1pZZnZfbUh5b2pTUGZXQjVteGN2R24yRlhrMmo1aXczNVJGWWgwMlVUWFVkRTE4WXQzSllzd083WEs4UzZ5NFY0ZGVObF96Y1pyU3FmLXlBV0I2dkJGTXFvQnNWWmxXS29HX1U1dU5EM19RYi1tVlFOaFF6eFpEN3BJTlJRYTZHTzBsanVHTDg0a3ZXWnp0UHkxaXBKd1dqYlltYXREVXZGX2lLX0VhUnptdlBjSjNpTVU0dzJ6QjFUU3VRZl9TWmxJQTIxckVCd1ZPM2RMQnlVblRlSGtQdk1XNUwyWHk4dkwtemJ4MldIVXIyd2s1TzYxY3VoZ1BMVnNrMVZPTExyLUxncVhwWWVLNlIwNTFrdXRTdHp2YlNvVmFkREt5YUhTaTVseDdLQkl1c1VKZ0Ita3dYXzNIem9fZHNGSENqa3BOcDIzbFFITG5BZXR3UWEwQ0dBaHVZRTdMUUtvaVUyVldidmlMeWVaaWNhMGhIa2Yxcy44WDl6Y3YwcFhUdTQ0VUlydEtJazBB" + "value": "JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLlotUUFya0RCSzdZOElvelJxZnVDZS1qSHBzUnMwdEtoVjNfSWg3UURIdUJmd2RaWG5jbVZNUHE0aWdlX3F4ZGZSSGhLX0haZHdSWmNUNmUwRHJjTkJpcm5NajFycjdydlZVTlZabVVmODI3M2I0ZktWalVQQ2dZZzFMenhsaVVPRHJXODkyMGRIcGN5UU5UMl9YclJnbjlfRFhhd2VMMldQbG9UYkZVS2xaWjkwc2FzaXp4aDRENzhWYnRJU2NiX0pnT2Z2RVlBcGt6Ym9GcUc2UHcyRjNma05aSzNhZ3I5VkdQbkJEQThjTlRWZ0FlMDdtN19QRWREbzhYNTRmdWJQdHNZekl0M0F5dlVKWjlNai1fYThZQ1YxZUFDT0MyWHRkN0FQYUNVeHVVS0t3b2s4TEpYQ2t2bThaVnBySDNpUWpNeEhCQ1Jfa3FIanVUOTZ2bGlEUS52R1ViVE1MZTI1MTVjZkVRMENDOUR3LlZfRGUweHItclhPNE5CaXBZeFh1M1BBM08tTnhLQ2M3WEhWXzBHdmFWZC0wWmlGZGpTSzBtZU1WU2R0Mm5Ma1VfMGR5Sk5TaVhGU0tISkZkbUU3amR0dHdBZ0I5RFpiMWkwMnRFZG5Bel9uVFZ3OHJzRzA1bFYtcG5YV2dPSVM2UGpORFVqUy1iWWhHQzk4Nkx2Q3BOemJIR01wRm5HTlZUbDhLYjJ6cmNxcTN0Y2Nkajk2d2JqNHdjUExONjJBeFMxR2VsU3hnbk9Cb1NxVHhabHJzcVZHYlJ5eThqSVN5ZnR0S0tCV3hkbFM0SFBvVFpYb3MyanM4R2JmQUZsY1ZsRGlYSTRUOUdGUTF6UzdXVk1ZOEN0WF9CU3c3UTJFYVRIY1dTWDc1amlmaTUtVERIYlRfUks2OFh6ZGhpQ2ZJUlZJNXpjcnlmbGZHUTJORWk2MHc3cFlwNmkzMlBNLWlQU2x4WWF6aF9Ua3VQV0Y0cVJ1Zjl4YXZTTDRnem5sVXFkOWYtWmxRd28zRWpadHNvQi1lNEVtanJTLTFQXzEyLU9CazVZZXdTRXYzUzVuODFhUjM5Tjlya2V6dWdXNTU3eWs1Ri1JVjFwdm01Z094dTJIS0ZuVkJXRGl1bHJFczFfeFdhLXJaTkRBbngtMnljaXZfMXFyTXo1ckVWUENyVk9YOHRWYUxHR1RaTmE0bkFJN0ZCRHVacnhLbDdUZl9PRHhBNkZ4dW5vN3J3OTRGUXRiU3JmVXFvMGhJQVZhNmZXVWloYmlEd0lySFMwSDczSFhvcGZTXzQzbWl4NVQzTnExX3hxX0JiREVtSVBvamdUTkZFd01TbE13RlFVQlpEQkpsMy1tYUZOWndCaHdtYmNIU3NxeGdRWTVBSjkxekRlLUdjU3lnT1dRdUxLVXJyQnJxc1ZJaFdhZkNNTVZacjQzb19SYl90OGswSmZrRkRTNlFucWV5Rk5PcWVGVURybXNfR3dGTVd2QmU3SXBvWVFJNVhBMV9nR0RiZDFvcUY1aENYaHlPTkVaVkgxb0I2WU81Uk5hOVl0Y2wyWF9ucXhCRThRN252XzRhQTFfSDJoM0ZHUWhoSE5KaFZXWW9fSmcxWmstMjhrWG9odG1xbXZLS1JZcmNvbnRoeWROcndnOVp6T0hfLUd6ZEloM3pHNWtidmh1MXlQdlhaYzRJQjlFTHZWMzNYc2lpV0dRVWsxbXBjQTBKMEVoNEN4U0Y1V2dEUkZQZUx3b2RyOHZJX1ZxV1hmUDh4VGM3bkUtcEJEeUpKaUZkOHgwTWhwUnUxZWNRR2tSRHpOdHR5WDdsYTdmVng3NHdRa0c5SHd2SzliX2o5aFR5RUZnZENXcVVOUFU4U05UMklSeEF5Sl9RdkpYYzB3SEJGSEcxMUctSnJZVzN1LS1YdFp6RndyRGt5ME1Xa0x2dTA2NkhjNG1CR1E1bERrMUxmSkVjcUI5YnNBcDBLTEFXTlYydVdtSUpxWHFaTnh2Z3NwdGUwLWlkNzIzWE5JM2FqRGNEN3VBcVZlWkctWnE4TmgyUjlFYjBfVUVsWnh2M1JRU01WZlZzM01USTlVVHJVbVMzQ1N3ekdYQXFJSEk1VGE1cFAydzVuN1liU3lIR0pIUHRIZUxWVUpkNjNoUVN1UF9rYVQyVWVXN1NGaTJHZnR2d0NqemJIZHdTbGxsN3pMNklLZmc1TE9vOWJyN3ZvWVVSdmRqOXU0cDM2U2N3NDRZdm1OR1lnRTFhNnJPUXRxcUtFaXpDSnpiSlNBeU5yRjk1M1duRnQyWlpTQzExcnVBZFN3cF9RVmFzSENGU3FVNTJUZTFKeV90dzRyX3hvWks2OTZjSjliQkRydHpiQms4cW0yTnNBZksxS1lxYUxrU0RWRk9icGxOTXd2YXhsWTd3STI0cW1hMWRqWi1aYkgtR25fbUxBN0N0ZlViRzZWdXBoV1BsQ0dQazI2R1lKRHRVRjRqc09kNkthS01CcDA0el93MnFnOTdWRWtmbkdZSnRsblBVZ2tPc3BVU0tsRWRDQUhLdlJXZHloSG1fNjFwNFhROXUzVTBQMm9mdkNOUWVPQWo2VkJjTm9LNndUNmNQQTRTMDUydTgyaFlFQkZsRGlqb29SRDZVTjNhb1QwNDBjUU03VmR2LTI2TnludHhFcndiZW83Z2hhLWdsS0JtV1ltQi1kMnBkTFdTU2lla0M0d09HYVlmcFR4Mk94RC1YUk9CeV83dXZRQ21uSjA4NkVGNzlQWC15TmFVLVF3Sm5WYkRIWEltUW15c1FCdmVzVU1qWWdEQW9yQ3N1eFFITnNlTVhvWWRBdmE0WFdXU2RRN2R1X1NWV0tpVmJTRTNyQldROTctR3F1QUs3d05NSW1OWHh2UlBJOXlLbEFQNWJKdk9ZT2ZVLVJnNWdfMFZwM0RKY29xRENIeTBKMm54WlFHaV9lZGlDUmdSejhCUHpvekNIMnMxNGhOUU5qcjVqd180cS1qMXIxMGhFYzJnbDBWMDZXUGkzMjJUZnB4am9ZYUFjUmhhS2JxQnppWGc4TFZFbzNOMEVZWjhMQ0lLOXVDUkhweVZBVmRsQjdLUzlYa3lGOVRwRmpaWXg4VjVTRVpZODV1ZUtQVzZXMHE0X1JybFdZMkNydXQ0MVNDclFkMlZub0dUQ1BDcWNnZE9FRzVNMEhCLUNkTWNlLW9GUkVuQlozdTZ0cEhCOUhDLW83eVBoWkQ5V3pHTFJtUWhxbHF4OE1pWkJidzU1a08xLWF2VG1WMjRwMVJNYXFvdGUyUHVvR1pYcDVVZTJZelVuLW5mb1RUbUpTUW1IeDJjLU95UjBfNTJxUnIxOTFvUnpnN29LNGlJMmIzSnU3SUpJTWlFdzAtTXM5Wjd0aTZFSExhYVN4bDJMX3RwR2pwM0tpX29kdi1YQlo1eEdNaktqVzNoUlpsUjFXOTRBd0FkSEhLUHZTVDUwbFdoUHdtX0hJLVBMT2JBMGFRVFFkbFM3bkxOUXVFeUZLa09BM2ZPOGE0YjBPdTlzWm94WWNUMW9EdFFKZFM4LVBxTFdzd1RQTmJ1bW1mYm85WTkxV0xNMkVnRnBKZzZEZzdoZW9PTzc1UjQtQ2IxcXlpODY0SEdIX0xFejBRUzNUN1QwdDlrNXI5Qnk3Z0MtdEdWbkpGTG9MZ2FKTFF0TDhrVEhtSU16NTI1Y2JyN09tNVdIWV9udnZpaWpQNDVGNTZxdERRWWJjMVFfeHNsUThNOE9McTVVMng1UTNXT3RWQUhVeTgzbGc4SHpVakdhaldDRnVmZ3hIeER4ZUhBN2xacTQ5UElGai02dmFRQy15Y1VJN2hQbmFxMUpILU5qODVETV9GLWVpWFk4dk8zTWhodHZmMm5XcWtQZXlPZHoydmNMZk42NW1zSFg1Y09xMlBqQmRUVEZPaXNKRmZIQkpJVjZWOUVrWFlfNXZrTjN0Ti0xWThnNXB4aG9Vb3BBb1prS3NyZEhSYlFHdHZjOFVYc0xMQ1FUTk1kTURva2xSalhQSC1EaTdvdUhKNnA4emowSThMZ3I0Q0o1UHVzSUZ5amF4QzhJM2J6LUpGSnNNTHdLVzJfZW5PVmxOTFFteE9FTFNveXVjQmdrellqT05iRlBQR19mLUl0TmNzMmVPNndSMjROd1FlSnQ0SXBvTzBaUWpYWWRBQm5YRU5TZWc5OU5BNnZqOHMtSTlSNEQxNnZwSUpGWW1PS0ZOVHM2YXdUa20zYmN6OVBCWkRUNElzVEtUSmp5eU0yeFdvZzFoSHNOM2o3SmIzSF9mbTF4Qi1wTVU4cGdwR3NZeFZPbmVNTy03VnROQkMwbE1qaFNtYURyMldxVWVKT3JUcnhSTTlJbkRidVYwOGtmeVBXTUVOZlIxR29tS1ZKRTkxLW9Gc3llMHBJNkFSZmhsc1Z5RzNoalVXSmQ3ZEs4U3h4TVJrOTZsMy1OSVdjVlpydURURzlvaG0wVDhCNHlOSmlBOUhLUTRmS1QwT0lSdlFydmd4WlZGZ3lDVkdXZVRjUUV6XzliUnhmTXVrZHkzeUp6TTR5YTdGN0tIVnBCSXJEWnZoTlliRzhZTm1HZFc2WTVJa0dKNjRnS1VPWmFtRjBnQ2NVZVdIOEdDNU43OHY2NERjVFlYUU9teEFlQVdTcUlqSHV2ZWNaWm53YmdhaGFlbjk3OFFmSGR3ZEhWSkJCQkx3U1o4VklaUkFPalA2ZFdwenk0bUxQZXFWX1FNRVc3LWlUVm50VVpiVFdOdmxFejlKckkzU21FTDhZR29IVGVDdjlRTW1DTVFXMWZDUTduRHJVNkdaYlFrbkdLaFZveEdfRU9PUHMxZ3JidVNPbGgtV3h0UHFaY0xISXZ3UXEyYmRpWmFqOGo3UHl6N0stdktGZFhXVVEzUWRLNVhiSi10aE5VMjRHekQ5UDFFdmdfT0hIUGZpQ2FVUlRKYnBGdjJEVVgzWTNReFZPWERIRmRIYVhCTG13S05rcGRaME5XOVcwbkd5WFFFMk5Tei1FaUhsQVFSbnVmdFZkTWpDbjZOckp2TDAzT0xLdkJSd04wOU8yUVF2UmRFZ2NIWmx2OHRpZEs2a19wa2FQRUxlM3E0X0FnQUpvbDZ1MHd3bVBnaG5kVDM3V1RtMU4tZVpiOGRyTzVMS0wzWGM5MFZma2tHbktPZWpVSE56QXVqYW8xUHZGT0JlR19fQzI2WUtNRHUxelRSOVBqTlpoZlU4U0hvdl9yTW9EVHNhN2otX29aR21QaWcyV2o4d1F4Wk52VS1YUkpURkhEdHJjWHBnejdhaWtWQ1hmeHUzZTM5YUViN1h5NXJqS0NuRFBjQm5lVEZJNzhSQVZRdjlaX3pLbDBWdEotQk5NekUxWHZBcm1udV96dVNuWGhHaEVRbnJ4M1AzOTFaUEplaUVFR3J1Q2pCUks2bEFCcVo0QzBMYWlCY3diNFBtTjJKa21uVEtDLXozT1hXQmN6Q2dwdTBsMEhBd2pKT0lvcHRsUzdGRldHWmFrNExiWmpvLXRGNXlDMTlTWHlxbnoybk10UFRqd3RSckZodk5JUzd0M3VYV0xQQ0M4SE1SNkIzS2syRFFjVHRYOFl1Ull5d0EyamlJZGhSR1dsZHlVeEtFVnA3cWZLaTlBQjFIZ0JHSm55cjVzd2FVZTRPVmlwd1FHQmVqTWxxWER1WGJsM3REYUhmSzdSejdsTHdNQ2NVVmNkd2YyZS1qcE5wYVFZOXg2SG1yU3ppMU9ib2xfSS1sMGJQbUlmVmNIZmFYbzhoU0hlZ0kzdjA0VFNYaWxhMW9BZVNvRlhfUUsxR3Bka1pnNUN1OFhwREpIbWJMUHZQX2YyT002Tm9uOEFaQ19SNnVDTnpOOVJRMlFibUM0cjh6VWFmN3NJNEpuTkd4ZkRTM2NkbWk0dkhsMFdYYTdGR1ZOeUtpNTE4QnZvTmpyTkNLWTlyUzEtVGdfOUQySTNGWGdzeHN4VHM5S0RFY1VNQW5WZV8zS3BXaDJ6TDdjUjh6eDJ1czF5SUlZbENvRWRHMy04Sk9DR2ROcEJGSUlWa000MWVIMkczSWpkMmR0R1pqOXV6b29iWkNGTWNDaDZpTW9vNmR5SGFVSUF0VzFQUDFwbEY1dGI5anJ3bmJtMGo3X2ROclUtc1REbEFSdW95ZWU0d0YwNFFPc2FkaFBZd09yck1kU1JsTXcxeWl2cUNlS2Qxa1l6UkM4eDNPaW14d2IwTHVvUGpqVTNTb3IyTG1tMTFBYTVaaGdiUmU4LlBySkMzcG5LZ0tFcFF0cTJoRzdNMlE" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1561712251?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e91-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3644d7fb9bbdfc9a4f54c556a8997a3f", "x-ms-return-client-request-id": "true" @@ -112,53 +156,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:34 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b0841236-1e08-4e55-b2e0-6169a489aaae", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ef0f1852-7f39-4bda-b04c-65f261429382", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1561712251", - "deletedDate": 1560889775, - "scheduledPurgeDate": 1568665775, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1561712251", + "deletedDate": 1565113339, + "scheduledPurgeDate": 1572889339, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1561712251/f7d5b4bef09d4d39838fee5c46c43736", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1561712251\u002f507d64b30a154bb4b9e2f0c9e844bfc9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Ljq_NKERWvfIsovN4epPFa-zzpHYGf4hi7SvvfukT00", - "y": "7Od84qsl1zB15QGWDXz76eCHSOI_AVKuy-g-2E2gelA" + "x": "jIoq4Sa8YJgVD9VaSkA5I_hKvhz57SH-inXoqQqJ7iY", + "y": "dlsT3g3KDzLVSM0d28s3vyhd7y94SwcAIY2dHR7PR4M" }, "attributes": { "enabled": true, - "created": 1560889775, - "updated": 1560889775, + "created": 1565113339, + "updated": 1565113339, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1561712251?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1561712251?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e96-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e4da6ad1def51cbd6f590e05c7237206", "x-ms-return-client-request-id": "true" @@ -167,24 +212,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:29:50 GMT", + "Date": "Tue, 06 Aug 2019 17:42:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "866f08ed-a50c-4366-b16f-c9cb208cf74a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d2a69876-3caf-4255-b348-29392fc8fb8d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1060107912" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyAsync.json index 0dea25a5c6f3..8f44e8c3c4db 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1889474531/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f4c-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "9597842d431db0a6cb41dd8d4cc9eac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e6162b22-7506-4051-98b2-61a5955e2f46", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f4c-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9597842d431db0a6cb41dd8d4cc9eac4", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:31 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a8181984-cd15-4f2f-9927-c301fe607d74", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8dacffba-6fd3-455d-ad17-cb3c2a86aca2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1889474531/eb4723a6f6934a89855fa5356c20bd9a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531\u002f28d114e71e9a43cf871a492fcef683cd", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "dC7nOZQgJhsvIES0Iq-FUh9eIzMag5EtrMFs5TBn4vo", - "y": "v63geNESL9XENnnjIDxse1ZJaRb5iw72moAlVsp5so8" + "x": "5gyHwW1DgNaxfMRjhO1dsber0LYCFp0t6WSYF2sSnNc", + "y": "4oB1jlMkCnTmHpcCq0a-mQPEuhN5ZzbJFpaj9v3o7nk" }, "attributes": { "enabled": true, - "created": 1560890071, - "updated": 1560890071, + "created": 1565113661, + "updated": 1565113661, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1889474531/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f4d-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5bfd7f0b71df230c2a608d52b762f468", "x-ms-return-client-request-id": "true" @@ -74,35 +117,36 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6340", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:31 GMT", + "Content-Length": "6511", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2a2642ae-39dd-492f-b661-0586771050fd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "098d18b1-2643-43f3-9a1e-3659d1820c3c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": "JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkc1Z01vTm9BVDVZR3VySlFYbmlVOWhNSWk4RWlZakZoRUVBeUUzTHZ6V1k2SkIwM1hOZk5SUm1yTU8xWmJDT05qOTBNejRQVmxrOE1oTGZ2SkJJakJJNDdOMmNnMnR6endFZ3Z6U3VDdUhkVDFYYnF4a3B6TkpwZHpTUV9HYjFUQm8yYl9IZXczWVVDaEl4QVh4WGFjOWtmdFYwdk9pY1BoMk9mc1o0OWxTejFXNjVWNlVzMXFKd0RwRU5wTm52eF9qX2dtSjZHM1A4TnJ1QWZoeElVQ3RyWkdHU2hjSWUwUndBaEFCYXp3dTZZLUNyV2JhV1ljVTIxLXZ1LUhUSXktYmlrWXRnYmIwRFMxcnI2cXZIcy1DN1VLdkdJR2hnUHM1ODMtSU1UOW1JNTVsekxHVk9DemJsaU1lSC11VjlaNEtUMHFUQ1FFQU80bDRNM2kzaFJaQS5hcGJaaTdhQTU3WFJ2YzVqbFhITDlnLjJ2OUZ2YTYtVFVpT3FCcWdSM3dveDFLX1dKRkxrZGVQOXRTNUdyZXd4NmN1eDYyS2s1RTZHMWVoRzdsdVlHTlozNVY0UTNjRUs3SDZUTDhIdVpXYjVTRi1EUXFwSFJHZ1owOEprMFNjbC0tYzNnWk5KSlVkR2Y2czVzMDR1Z0hqUXpTX1FWVVh0OVNHdjk1bzJKdFY0YTFOOVJYYnl4RGR6bGJkdHdrLXdFaG5rLVJqUkZabHFKeVlyYmEyZTNPdEt4U0puVWxxRWF5UFFUT3R3UDZVN3BsM1pzR2tXMGFOX2FUYjE3eU0xa2VvRzZ3bFlTX3NKbjE0UURCRnd6d21HNXBGWDRjNEw0YnBYd0VUcWNXUUwwUnIyQ3FsRWx5YzJDMF9JRjNPWmNVTWdVUDVrRjI3QldCZW1HTGpXN21iaklQRWc0ZkNEYTk2bjRmUE9Ca3ZCZmRwdnlwclk1aXpqQjJUVG5fUFZ2SktJVm9oRTUtMHJRaEdtT1ZVbzV5MGFXekt2SzJUQ1NSMEhHdW9KZlZNdmhYcDZndGdzUlpCeU5IUWRLRzFjdEltYVc1YVRTQVJwLUVwbjhmbllXMG1mNFZtQ0dkY2VXNmRfb0pubGVGSHZEeENudjQ1YXdjNTBGZDVEeklLY0lkcVdtWDhDTVNHR0p1WXI3Z0RQRWJlZlhmWHVab0tzbktzMFoxRTRKQUwwTVVYajU2VmtyNVl6MFY5eHdvajN6Rk9aSW1wWG44amhSVEFqeWZ3QWVxLUVLelN5RzdXMjV2S1I3NVZXaWFWSVhHYzVHYnRhazVIeUxNUlFKZ0YycEY0UTJNVVpRbnBKbHFEeVM3M0xVYlZXdjBGamQzWF8tbmx2V0p2YUg0MjBMNVZMOVZPT0VuU0l3dTZLNEU1VGFmZ3hWQ3Y3WnJmdU9qYkVlVy1ab1hzM19wZlRPVElHX1czVWdCWDNINFJFTlFrTmFPa2hKa2xKSzJUMWJucUFBLWlNRjJQUjVWSGhJc3RRNGdtM2kwN2JRRlJsTjBycXRyOFpyYTdONGR1ajI3YnFhMW1kVGIxTXFtZU1lUm5tT3ppeWxlT2NrQ1ZXSDJCYXMyWkRqUGs5c3UtWWZiT244VHFvUi1FZkIzR1FSLWlOb2FDRk5nLURTTUpTUGpJXzFmbXNhQnVUOHZxekdSYld1ZVFFRngyZEV6VUFvaFJ1ak9QNUttMXBTd2haYVc4UDgzOGZmUnZobDQ4eld3LTJpVjJVWDNGTVk4ZXdaWnV2ZTJIdV9YS2pYRlhYa0lFemQ5QzFsUnZwUkd1RTBxZWZROUI3VHlRZ1d4ZDVfdkMtbzFkS3otdTFBU2Q3STVadERBa2ZkajBxZFljaVU5N1hhQml2UjBHS2NlYWsyVWEtY3hTdUZmT05BeWtINk5JZlJueDE3Y2JpQlFaRzJndDV1RGJrNENPWVlaaWZoRmt5alk1LUQ3azUtNzdhb3cxSGlfYXNEd0tDM2dIekJobVRnT2piNjdaUzR4YTNyUkRQaVVkaUtPVFJ3dXdhdERTQmZoVkNDVEZIRFhaMzBBVk1nMDlXamJCU0ZUU1RuRDlfQkdqM0FISTVkSThLTzNaVzRZWG03NUZjejJjRWZ0TUVBNG1CZEQ1dElRRlUwWmJzZldwQmdyckhGWUk0dzZyUG5NWWFzTlJNZFk0NnJkcWlMd25mLXUtazJUSENnWDk2ZHpTQ1VubjlFdFhNVnRFU3lWWjA5RUhiWC1lSlpaX1Bhbjc2VWRhZ0F2TURWZDhPU2YwWVgyM3lkWi0zaFRFQ0lncF9VWjhWblhzelVnbUlzeUM4b0ExRzZsZmYwR2hQWVNmVWdIQlh1OVZOWDJEMzhacEczTGkxeUdsak9SdFBHb3Y1N2hVNFJVY3N1V0ptZUtYRnhxX2c2VGdkVzMxZXlTSlBpR0hTN2xoUDlfMGE0V1hSd3gtNkYyVXZ5dnMwRWhCNXBvOWRfSThxblQzZ05paUFLeGVZTGFhdXUyU1dweVZMREFpRjY1ZTZuZ0RTLW9nNWxTbDd1ek5PQzNfbExCckxYSGF4d1YzUlFhUkdQT3F5dTVKU3RaQXZCWk5CSlhiRmYwRGV4THRvVmpXeEoybmJoaWRnREpHTEZzZjVZMGZVdDBlLUZGekZibHBTTTUzZTZrcGtjNXRVdXA5dTZMLURrMXhERUN5Q3Eyb2NoWVIxX05aWnlUdjgxTllBU081dkhqV1V1eUJGaEZDRmpVMTFmLUFKcDRZdy1CNE8tY1dJOFR2Rk0yYXFMb2N0bmJRaTVQZ2xYVFZNYjQtd1gtYjdZZ05TSDBwM01oQkNoQmZaa0ZlY1piVG8yY3dZQVYwSjJQVDVTb3JnU1BKbE1PVWxkek1BOVF6THF4OXM4NXBxZWJiaUdERDBQYTRpQkJCVHpETlBqT1NWeVZLRmdrTmpBdzc1NnJRTEFzaXotQ1FqeGxGdDdQVHI2N2d0VmJpSjdHRFIwNXRLckVrcU0yQURCdlRFV0U2MVA2d1VSbExCbkpFejU5VDU2bUFtMVYxT211eTlnUTIwLWNnZHFqQjA5LUR5SXIzOVlPZ0ZINjY2aWFRclZmaGE1MmJvazE5d2ZVYmtvbElNamUyT0V1MVlWU2M1dEdTWjBXWXZtdGJkZHFhM2s3S0F1X1poWlNpa0RaRGhKazU0bXF6UEVMVGEzRE50NDZOS1BmWEFlNHY2VXRGU0tDcE1CS3U3UGdYd2pQYnhxWjJrTVN5YXQ2Ym12MEtvdmhocV84dDE0ZGZmZGtXVjg5d2UwNTVCaW0wd3p3Z0lKR0MzZUZLUnRSOUU0X0VEaE50ZGtvUERUYU5iTTVEMDlSQWF1bi1QMk9OUXVYeEd0QUFtbmpRQ3FUNjQ3UTZULU5wdEVUaGlZTGp6MVdpaU1FMjY5V19xOWFLTzJBQUNENHlNQ0M3dlU0RFBsQWdNVFZnYU1WU0tfNllPVmt4MjdUWG5rZ1dDM0Q0TUxpY1RIaXBBT3NPdjlTMHp3c0R6WDVia3U3bjdOYmVTQnZjNHJtNVJDaVFMbko3NWJDdVlsYUFnd1RUNHU5N3VxNWFOdFVvajR3YjAwSFo1dFdiVDdjVDhrQzByYnJNMWtWdnMzakwtblN6bTN2dkFsR2gtU1NIcDNTVUxRNXFPWVBFSTBQZUVmeUZpUDNZbW9RSkFUeUJFeVZXbnljdHBVOWtWUDI0OVVQWUF2cEJiM3k2UHRmUnhfRnNsUDdNNjhBZkFKVXdDWGxaUzFfV1pyQzU1TUhEU2RtVUwtakdRV21pZy1hanB5dk40cU5IczlETjMxYTM3NnVOXzV4cDVWdlBsWG5CNGh3Z05KdFRscDNZaHd6UmNXM0IySE5ycXctZTJ4ZDZVSVVScXI0UFh4ajFjTllLV24zUUUxU1ktM1hFZVRvSGloNzRJeUQxMTVRcGotV1VXSEU0bUlZMU5iS0Z2QkpJY3RRV0F2NGVZZnRmdEdlVlNFRF9VeE82WUFZSThvRmNtdVlOUGprTnVXT013NkJEUWdESFFfT3g5c2c1QkVQVkpZa0JLNHlIalhzeUkzaXN2aVdHQW1ieDN4TFVMWl9JX0JWR3U4X0gzVzBLMHhwX21xRW9RRmlmelVsSjR1aDgtdUZOcF9kLVYwRTAxdkFKSDUtbWV1TUg4bDJpTVpWU2FMX1ZwOU9GZkRieEFfZ1dhZmdYVVYwNzRGYlVSVWxKMFVGekI4SVN6VXNJWW5HNWdwZkhRZGotSHBFQ3BGUTkySWpVbzRnMmtPRjRQS3BwTkJoN25paDRjYU9JcG0yUkpqNDJ5Y0xFNXdIdlppeVBmeDM0eTViRzdQZWdWWUpIb1J2OUJkT1dtczAxN2xnQ2UweHFOQ2xETmZvaXFUMGpDdVF4WW9aaWVvWENmc0E2Qm5fZVQxVHBFUnhLcUJWbGpCNG9sU2pIOXBva2dvMTdCQ2QyTnpQNDZpRHJtMzFCREtiMUI1VllDT2JZNXBnNVZYeF9qcGpQY3M3a3B2MGZpRHV1Nmg4VF90TTY0ek42SHRVRDRCdVJQSXFNdGpfU2FDeWUxQm53MVZBUzU0eXl2VVlJY1llbjA2UjJtTjRQVUhRaFBhOUJ5ZUJ3cTlhS29nYlNiWlNlUm9aQ3RGQ2x5NDl5TEZOQmQzRjJ1b2h6Q0pHRTVrNVdQb1hsbW1CZVlGWU11NE51YjluWkZCYkdaeTY2cG9tS1hwVjZwblFIZHBkMS1LT2pmQ05NSkR0YTFzUDBZOHU4WGtGSEJLVFBvcGJsNDBvOTdjMlRHR2dNUVhJVjhqUWhhcVFMV1hMZ051MU5xbWF0UXh5M2tabGItbGZ5dll5SURwSGdDOU5sSXJEdXVmT0lKMlN5c2twLWh6ZWVZZEVCR01faW03MXgtdTlfQzBKck1zRGRKMU02dlhiRXBwQVhwa2xGd3dEMkVpRlJwNGpTYnR0NmNiWmNoUThXbG9BclM0WDdvSWt6QkhsVEhvbzU2WmhMSFlNWS1FaDJXSk9PNVlrdHQ2TnQtOS1QdWVGNzZsVnRLYTJEcDNxZEx3amRsd0NUY3ZlM3lDaTNKTy1WZlRFUXJFTjdpSkNPYlp6Q290T3hwNGZoS2tXbXhRbl8wWUMxUU5UdEpnRUpEYU5aTEp5bUN3SERJbHc2ZE1fallnaHdSTlhwa2Jva1h0NktBTGtBYXp6SDUxRUxoaVY2MmhkenN0TkZWZU96MUtTLXMya1V2SlZ0eXpQT01OR0oxOVFQSEhOTHFqX2pJRTRzQWZFYXhQZFJzOFFlUzk2T19oN3ZzM05GRmJkZU5fUXVTX08tSXVuSldVc1BYVVZEN0VjMnExZ29iNGRPYVpsclFURlU2dGN0T0xOUW5KSTJIN2VIdEhsU0dVaEdYejlTbmxJLVhvZ0NPRjBwZ05FZFNTUTFCZGVCbUwwaXBBNmJ1VTFlUUZIbzlpS0FxSW4tdVBUN3RMZWFnUDQ5Sm9lZy1fRmRXN0FycFpJeXFiSk9fUlJob05WcU1PaVY5QXh1eV9fRjlWNy1lLURobHByRnhtVExkY3RfVDdrenVkYmlqdGFiYlRJRk5qV2ExX0hsazJPX3Jlb0VPZW9UYjlYUEwwQ1BiRWF3a0dmRHhkNWYtNlhXa1JoOEI0cE9IWS10dGQ4QVVHN3QteFQ3ZThlX3NKRnZ3UmRpMHRuNUw0TWp3Y0ZSQnRDR0RlR0l3Z0RJRmxyaUJtS0hIeGMzU1J6aWZCSGxhZnFmVlhVeGdFSHFqZnl0N1NfTElRV19QTVE0WUF0OXZHcWR2RzlJaUV0Nmw0VTFyZEFjVl9nQk5tY0NyUnF1dWcwdG9ONU9CZHZ4WnNyY3Nlb1h2emctYk95OTdhUXktTV9GSEhKaGY1VmpySW5zZzB6VzgwRVFnd0N4TzNYTjVFRkM2NmthUFp5OUJKWlE2OVhGMUZMWEZkSUZQa2kxYmcyaVUwSFZlelNjWG85dmZ3TXhLNnh6ZVMzVjFEMnpqeElOWENaY3JoaG1PVV9PV2t5QndiSW9CSm4zSU9fOTE5bzR4UEFHaHZkaUJ6dDUtbkhqNUJyOFI2SS5wVUhtSUJTQV9OWElKZ3lxdTJOOWNR" + "value": "JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLlRuQ05lOE83cEowNEswMEpWTE45S1VmYm5MYWxxekhyS2pCMm5ob0NBVzEweTFJRWNvbGtzNDBSUHFmUTJ4aG1LdUlPVTVNRTdUXzZnWkdkUmt4dktWcE9Nb2dWY3g4MkJySFF2cHVLRTNOX0VrdkkyVjd6VjJwcFdRYWI0dGUyYXZIX0xiOTBZalpESTVISUlJUXg4c25FY3NCYjRHY1dqWGFTdkE5d3Z4MWhBVTNKOTJhNUwtMFZzWk9PWkI4N29MNkh1YkJwSjN5ODJ0UnJubFZabExoWjhBdHppVXI2SFU1V281bjdsckgtaFlsc2kxTjNfczc2bmJpSWJBczdLX04yR28xdjVCaHRXNFBfLU5JQkQ2RUoyT2l6cGNkWmhXb2tlRmlFcTlxc25NY2ZFa2l2SWltN25aNVFXLUx2enV3d3V0UEtQWkw3a2d2ZTRLUEhFUS5ubmw0c3k1QWRwUzd4TDY0VFZPS2h3LnRaWm9pNk9wbFZnYUlvUG9jX1plRjFlOXZCYklraHlXUzdFNy1aVWppTjlVb2cxbU84RjV5UC1pOXM3Y1c2VGYxd2FKZ1NlZ0pYX1Vua0pDLTRWYnM5a3pwV1dEdnBfMHJBVWxEMWcwOGYxYS1vNEtnMzdIMnFGZFB0cV9kM0ZPTlpsenYtWWpmbHpTVVlVckNsQWlPeVljUk1NaXozRVRleXpoei1DWkRTcHgzZG1JdU5NcGRLdGJ3empwUWllb25VQjdkMTNrWVY5N0RzZ3c1aUZEWGJUeGNqZG1IXzlieXZUbHVQVG1sQ3k2WGhETk1rY1VFVnA2a0VJZHN6V1VKX2paRk9DMnZKV0gzUjFIcmxqb19LMnVHazdoaWhHSkpHT1QxSDZhYnRMc2g0Xy0ycWZucUcxQmRWTkJmR3o1UmVaNWZNNFZkamdVWnFVa3FWNWpYZUlheXVlQ1dlYTJKdHJ5enhHMTFUdTAwdW9md0J5Y2tVejNEUVV2dEZXb0l1cHAtQUZCSXM5c3JOWjdEbVdMN3lRYVB0bHRDM0RKZWs4bW5IR1FrVGJweUpIZC1aUWc1QTc2VWc1RUJIclIxYnJfOGVzcE1WQ0kxTnNsTV9qZ3pkRjVpQ3ZjWVRoUWdBMklOc2dpR09lLW5LQUFpWXNRVFhsaUFDT2o1WXJtaHhwMVFtckphdzhWZ28tcEZYZGp5TDhzT2dqOHdFU212V21RWHNrLXBGREozSktKU3NUdHdXVXNuMHNsaGRYNll2SHJRVFlDTlhMSGxBcmR5YS1zRDFTVnRZTnZOM0pkeWFqcTJ3Z0oyd1M5TTA0UlF4aGNSLWgxeEJ2Z2pKNjhZWEVVVHpHMGoyU1p0Zl9vem52c2IzQWdWdHVQb05zRGd5cVcyOVZSRE5OSXBpUk1mTU1FZ09kbnpPeHc2SWRydENoRHpLLW5qRW5kNXRBR1p2VmNQT21kZ0ZjZnBvSTlXdTJROFhPNW8yQkFXRkNrUURGRGpnbmlBR1ZUWm9JcC1lTG1va2RjRU9kREtuOFJQOXdYMUtiVHFGVnFhTGVNTXU2NldkQzl1S1pSWFRRS3hQZURCemNfVGE3c3EwamlHU3NWZ0k5MVkySHFaeHhOSF9rT2JJN3ppRXh5d2V5aE1QUzgwMjZvZ2lqVnkxN19kNE0tUmJLbDNVS0d5NjZOWjJQMzYtaDl1ZEo3bUNnVkhNaEVINWtIMWk3cXJ6NGYwQU1WQm5CT2NMYkVUdnQtZkQxUU9vYnVuZXR3MlRBZzRNVy1oaUlwRjk4UVRjTHFuUkl1dU1KVEp1LTV0RmwtZm9IcFZweUh1SHRaNjNPNjE3dmpzUFlwX0QzeXVHd1NQMnNIUUQ5NUNhM01tVVZVb1lkaVU0V1kzNFBKWXZNbzAwRkNJUWxTdkY1YWpUUGo3c1I5ak14MUt2SGduQjFuNUIyQ2dzbllCYi0xS3otUHVmeTNPOEJDQmJWek1JOUIteEpQRm5EVHZBOXRzMXBjcW5ydzFscGI5a3p4d3J5bXlmcmpNRUVIbzJkNkUxbEhfdThCMjZKUmV4MERQcmJBOXh6Y0JjckhCLWJGZVlieWN6dGZZWlNsX1FxRVlPWklKcmtuTUJua1IzeHFwdzhxMU9PY0RTbW5hZ2NFRjNFaGwwbHRXVmlKREZySTA5NXYyQUFWRk1kNHZaVFpkWHdqcEI0TC1yLWlSdmJmMFhKa3FKaDJiVWotN3lvbWI4QzNGOW5ERC1nQmZRT3BYWm10QVRXYjkzWElweC1SNWN6TjU5MVU5cHByM3pHMWNsTkpmdXRtYzBURzQ5X2xMS0plVVlGYVFIcHc4cnlXa0FKX1BLOW5CLThtTWxOTm8zcldvY3dIcDAyV2N0a2Y0QWxkbDI2elhOTkR1VlNwMkhfOEJzWWc2RVNPMUdQOVk4dWw1SXUxM1dQLWZmdms5RDFDLVF1eW9VcDl1QlQ5QmlLYWtYNi1NVGxLV0cza01ERDcxNDJNVm04bzFjN2ZfdXNkY1MwSk84X04weXNHaG1ZdEhHcjd6ZWpfRjdNbnNKRW1XaVhVQzh0MHFIMHJnaVVCcUxpcF83d09tc25rbG1EYmU2ZzhQSVNOb0h4bFg3NDQwTjNFZzZkLXJjZG51YnRaLURtRWlHOHJxaWRZNGlyV2c0Ml8ySjI4S0c0ZDV1VElqLXdBYnBHS0RONGhsZnpSb3F1NS1LbGdNTzJ6d1Z0elBVUThQRndKXzVSWWJOdlZ4S0pCaFFhbm9rWnFPcS13NnBUcy1lMHIyTHRxR3o4SHNVWFdvZE9rUlF0YTMyUHRDRTJuWDdfVzcyVkwyZFR6b3Atc241MDdsZXFETzFWaHRCVkZ0eTdxTE82blNfdHo2TTBFcHM4SDJwVjVMeW9jbV9maUlLbTNsbDc0ZnI2azM2Y0N1dEZUYlVtdXV2Y3lUMkFFM3dQYVM1TmJnRkxtS1YzZFpDUHFlNmNYamtvVV9WVUFPRlFJQlhVYWlLOXlWREc2UzlUdEVEOXF5LW1ZYWc4ekxMTUtHNno0UV8yTDhnUk43Q2tEcWc5SXlTbDlEUFdfVUZoaFFiclprTzNyQmlNbWp3UGV2aDFFMHRGSk9Scll2bkVpbTFZLUo2cnBWSEZHaG5JMEpqRG1aWEsxal93ZEVvVS1PNHhSM1Fidnl0eTQ0bElqOWhwT1F2YjZ3RndWWnFEX1QwR01kal9LSlJWWldJdWZNT29NUWFVbmFodVhNU3FJa0otc0liTG9nVHM0UkM5X1FBVGp3SkIyUHFoVGRsc2JSbUZxR2U4UnRKdEE4UlV3Qy1zcFo2WU5jd1djakk4RjFVRmpHd1hIa1Bnem1VZU9lMXo0SW5FaTZ3dGdXY01iX1VJSDhNY1lKcEFJNjlCLVgwV24xWVhXdUhlR3BDTVJrY3lNUHFPNUlobWlfR1ZVWjVLR0d3b0RkVE5JSDJlRlZpZFY0NWdzRlZZejVzMkJoQjRyOUZzb0FEZGlwLTlSeEIwaDZRYnQ3aDgyM0UxQ2xFY1VsR3NoWlY4bXVHTjliVVdFVGx1TlE4STNoNzhCcnZXSTBHWElvNWgyQ21RWHpUZlV3bmxFZ1N0RlQtOF9BZXBLS2VoS0FYY1o5WDNkaUJGS21EZmItTEF4OGRLN3ZVRmZZTFhOLWRVa1g3VjdNaVhMZV9jLWxqU3dXSjMyZnltaG01dG5jX1ZOMlQ3XzBZMmJMb2F6WVF6dmFCM0oySmQtRndqSHlaOGMxUkhidktZYnl4LTlhUnYyZVc3QzBCVzI0OElieWRGVEsza25ZSlNTdmJOWFNOWWRwUExsLXY0STZYbXNTVG81VEFFZFI3cWZXNndXREFZY0s1U0Rzc0ZVNEFSejBiNVhHcUIzUlRQYUxzNHJGdGtHbzY1bTNhQm1WMHNueWFCXzloTV93X1drWUxINTQ0T1NhX2ltQm83R0E3MC1rVHlwM0NEYnAxVGU5U3RNaExUUkNUM19Oc3YtRDE1cGwxLVV4YUxhbHpaYnM2U1dNUGx3Q3paZDlRMWxtQUh6Tm5DQnZRckVCbklNLWRGZmlJUzdjQ1hjRlNZNU1IMXJ4SXFGbmt5WThVZkdoLVZqbThBa3lMeE1kazhDYTdKVWQ5YVRIRERwX0lTcHlmMF9vS3pRcUlJbGhGMWx6eVprSDhVQ21CQXR3bHdldXh4OFFVVDBhZFFCdkFYYWxnUXU4Wjk2dU5uUWVJZDdWZTJOSFRfd01YUG9PcHAxenNoNkhIaE1oV0RuSS1PUVFONEp3Q2NlTUF4ck9TOVk0UUlUMmMxM3NiQkxVbkNxN1hCR2RIbE5uMzF2bkNQdHdmTWh5X19lX0FmLTFldlk3aGRCWUwtRElfNGRNeFNxMzhod284YVFnSHplZXlsRXowaTktUkFieEZGeGs2U0xFbEVHcEZkMHF1R09ZNkxvNWJjLWJDOXpmX3QxVXZ5WkdmS1FTZlBhRFNINWEtdmJkckMtOG83TjVXbi02MXhPNE1rWVFKRUVPWFVhNnphcFpZSzlPZDlkME5PYUxiaDR2b0pPSHZmbXN1TURBdm9YUlc5NnZ3d0Q0d29KTml2ZUpIR0xZeXBJLXhPSG81RHR0dXVuZ3NTRmdsSXlhb2VZX3dyOEREZ24yUmV5dkoyLUZ1ZkZJNTJTWGpxbnVBTnhqMmJMNng5dnFDTjFSZXRNNHFCaGhlbWRtSjNmVVVQTDB2OFU1d1RzUHNra0lEczRXcnRDRGtXNTY1NUdpMlgxX2pZWlg1MXA0TzVkbFktZGxDLTdMZ25HUk1oVk41RXBZd19qcGFDZFlDSXhhUXFXeVAzcnc5amRIM2FyWnFiSU96MHQ0eFZXbzZTZDlXLVBpbzJLQlFpUTNMbWR0dVpEbWVYYi1ERE5lUk1WTXl5NXk5REp4RXZZU0R6N2RPUzFKb3E2aXB4TzdhUERkeThUNU9XUDVGcDJQZ1ZVY3dGakdyU2lvelN4dTIzb3VXX1BjT3ZGVWRYRVBpVEw4aFFmTUw2M2FhV09RSmpNRmk4UWNNenQ2QXBrdlJ2V3RsRTRJQ0xLa2dld2Q0SW8taEpRczh2NW1aVUNYRmpFZEphV01CMDlldFJHWEpqQUVUT3Vpa1RUak1iY2l5RVpFT2g1VTZDR0N2UE16NnVucngwWC05NGRCUWdwdm9RSlloUm56TjJyeGlpZi1XTWdGRklEa1dvNEdDYkprbXFmdzFaVmJWYzFpankxV0drV0pRdlh3NUZaY0NwSWNSZ1VPcmJaTjdfcklYS3NDZUhrWTltWjgzeGk3YTdSS2pDb1E5dDVvaEV5VS1tNWNBU0N1Wms0c0tyOVZ2UmVqU3c0Vld6SUVQT0MwTUFmVnYxV1pVMGNtbmFVSEJuN1BCSFRYcVBnRFNTR1cyd3l1czQzZkhLSFFGSk9XWEc0QllwUlZ6RUg2aVVBTURhVFZZOXdPMGlKb3gxeG4tdi0yZW9KUlFLLTg1QTNOZVVENnJvdXhZYWd2SFYyZl94bEdvRmxWajlSZnZ5R2w2eVRlaU9zZlJMRU13d2MzektlLTViOFJHeDg5LU1XSV9GNXUzR1ZoM1U1Z004RGpCZzZlQWthQjRpVHdmTGp6VmxfRWpmaU1JQmNpUFBOTVFSUDJ3a1F0QnpqdFJuWndZd3JJeUhNb2xxalpTSjRwbjZuOGtDUm8ySXNfUy1TZGJzd2RYVGdwTkZvSGhydzFmajZFZnR6eVlyYUl3N1NjdVFmeU45WmZZcDZTVUdUdTFaNVJsWUhXY05uZjJNRFRRdjhyamhkTkk4cE5QVFBxYWhTMWg2Nk5jRGZqdWRYMVFOU014b2FZc2Z6TzhySGlYcVYwN0ozaHJhSFNkZEJQQ0VQZVBhZVVkZS1uanhuRE1PYU9hYllJblBZTl9oSjBOdnpFWTh4MDFLdnh2cm0wem5CcFl6amNGYms1QkFWT1JTU0JqODMwQ2lDUzNGbGVWdkxPSGhaMlVONmNNMDF3NzFVd0pvWWZPdy1lQWl2V1FubmZWbXpPZHYxbHBKc0hGTl91R2dqcTQxNThLVWd6NFFMcFc5WkZNTkpXSFJkeEZoRGZoT0ExMGlIMTNVR0d5MmpfeE85RDNhVUR4Q1lUZFRPWGEtUTUyb3NWVlRDXy0tSlg5UjdnamwyXzR3ZDF5d2ltQ0hZTFRjVmUwMEdOVlhyc0h2WUR2b0VtQ09JMWpmZHhkbnRadUR5TEd5cENXMEpTMnp4YnVVLlAwdlc4UGVMZ3VSb2ZZbGRoRkFPSVE" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1889474531?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f4e-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "28a6a808f44ff6b465be733eca496f6c", "x-ms-return-client-request-id": "true" @@ -112,53 +156,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:31 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "110a440d-a3da-4841-ad71-c82ac4a31deb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0c8fb3dd-7b9a-405b-aa4b-69a092571c15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1889474531", - "deletedDate": 1560890071, - "scheduledPurgeDate": 1568666071, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1889474531", + "deletedDate": 1565113662, + "scheduledPurgeDate": 1572889662, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1889474531/eb4723a6f6934a89855fa5356c20bd9a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1889474531\u002f28d114e71e9a43cf871a492fcef683cd", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "dC7nOZQgJhsvIES0Iq-FUh9eIzMag5EtrMFs5TBn4vo", - "y": "v63geNESL9XENnnjIDxse1ZJaRb5iw72moAlVsp5so8" + "x": "5gyHwW1DgNaxfMRjhO1dsber0LYCFp0t6WSYF2sSnNc", + "y": "4oB1jlMkCnTmHpcCq0a-mQPEuhN5ZzbJFpaj9v3o7nk" }, "attributes": { "enabled": true, - "created": 1560890071, - "updated": 1560890071, + "created": 1565113661, + "updated": 1565113661, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1889474531?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1889474531?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f53-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "93cb89196e81c6f74b9d003711988cd3", "x-ms-return-client-request-id": "true" @@ -167,24 +212,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:34:46 GMT", + "Date": "Tue, 06 Aug 2019 17:47:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5e9d5e6a-acb6-4907-9f27-ee761700660c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a628b33b-ab36-41e1-bfe0-74f0121df544", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "300508840" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExisting.json index 818d9f620589..f285ed73a228 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1360093128/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1360093128\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e98-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "41433b6732e434a064a1127eb1799584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eb5653c0-160a-46da-80cf-0acd85a7fb0c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1360093128\u002fbackup?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e98-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "41433b6732e434a064a1127eb1799584", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "237b614d-0696-45bf-b4fc-190ee721da69", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "93a4554b-c9f2-4d82-960b-cba69930bdb3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "331066907" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExistingAsync.json index d215ece6f452..382f9e01ba49 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/BackupKeyNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1242221772/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1242221772\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f55-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "90091f3b7348bbb66c8d2b11ebf88033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bb52ab51-4035-40df-b289-7bd5bd69f6c2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1242221772\u002fbackup?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f55-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "90091f3b7348bbb66c8d2b11ebf88033", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "70693e35-415b-459d-b6bf-14e93504c7aa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7bcbe9cf-0406-4fcf-84bc-090f906810bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1880532375" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKey.json index b92ccf6aa3d3..8de2896b88c2 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/653891731/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e99-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "af4762a07474ce57fda8070d984e41f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "444e4a99-7e5e-49ee-b0c3-adb2b4a65c5f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e99-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "af4762a07474ce57fda8070d984e41f7", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac5d380b-d44a-4d44-b711-6a271302c53a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "324a2cf7-4840-4e0e-b81e-8baa733aba05", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/653891731/d3ecb97df9e6443b823bb9525ac5463f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002f929f71fd35714724913c2f5242392ca6", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "TpMXCdEh5mGuv1Y52Rc7MyeAT4TFj9k9XI0sBhym1iA", - "y": "hFvTctu0XNa2m809m3MDj2V_xgKrnMVdZcDNaotfa1E" + "x": "ZOqMrMhJHWtSiDjqa1ft6TBnRoo6CXe074mj-mgHoMo", + "y": "5wWBUFnP1xiejsprJjXf4PnJuvnSGczZFX6yRIBuDbI" }, "attributes": { "enabled": true, - "created": 1560889791, - "updated": 1560889791, + "created": 1565113356, + "updated": 1565113356, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/653891731/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e9a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "32b6e0d6d9d8c5f8450f3f4305d06d1b", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "50705e95-1eee-49aa-afb6-cfc5da977139", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cbdf5101-b2d3-438e-a880-af371c28ae7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/653891731/d3ecb97df9e6443b823bb9525ac5463f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002f929f71fd35714724913c2f5242392ca6", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "TpMXCdEh5mGuv1Y52Rc7MyeAT4TFj9k9XI0sBhym1iA", - "y": "hFvTctu0XNa2m809m3MDj2V_xgKrnMVdZcDNaotfa1E" + "x": "ZOqMrMhJHWtSiDjqa1ft6TBnRoo6CXe074mj-mgHoMo", + "y": "5wWBUFnP1xiejsprJjXf4PnJuvnSGczZFX6yRIBuDbI" }, "attributes": { "enabled": true, - "created": 1560889791, - "updated": 1560889791, + "created": 1565113356, + "updated": 1565113356, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/653891731?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06e9b-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ffaa34ae494034b80822a2db9b98cdcc", "x-ms-return-client-request-id": "true" @@ -128,53 +172,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:29:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fafbe39c-86de-402e-9ed8-c52427e5aef1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cc191517-44ab-495b-88d9-740545850069", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/653891731", - "deletedDate": 1560889791, - "scheduledPurgeDate": 1568665791, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f653891731", + "deletedDate": 1565113356, + "scheduledPurgeDate": 1572889356, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/653891731/d3ecb97df9e6443b823bb9525ac5463f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f653891731\u002f929f71fd35714724913c2f5242392ca6", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "TpMXCdEh5mGuv1Y52Rc7MyeAT4TFj9k9XI0sBhym1iA", - "y": "hFvTctu0XNa2m809m3MDj2V_xgKrnMVdZcDNaotfa1E" + "x": "ZOqMrMhJHWtSiDjqa1ft6TBnRoo6CXe074mj-mgHoMo", + "y": "5wWBUFnP1xiejsprJjXf4PnJuvnSGczZFX6yRIBuDbI" }, "attributes": { "enabled": true, - "created": 1560889791, - "updated": 1560889791, + "created": 1565113356, + "updated": 1565113356, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/653891731?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f653891731?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea0-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c122bc581b3c26084f53ebc1adf7acd3", "x-ms-return-client-request-id": "true" @@ -183,24 +228,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:30:06 GMT", + "Date": "Tue, 06 Aug 2019 17:42:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9e0eddf8-151e-4b07-be65-07bfd9148e1e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6fe4a04d-df1a-40e6-b09f-0a44c6fddaf0", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "529895790" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKeyAsync.json index f254ad3d7915..38d163b59d87 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1435525461/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f56-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "d527ef718199e9fede3ecb76b440c7b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2bacfaac-4e60-4ee7-af2f-41a2336661d7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f56-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d527ef718199e9fede3ecb76b440c7b8", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc5b9b54-6abc-4b38-9e18-ab97f1f4cc2e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4339aeb6-06a1-4a75-bf28-279950193fc0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1435525461/a6f73f318ad44b5386b6b3b158694fa0", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002f030f8bb9689c4615a098b3a10ed25bb0", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ydY6P3QyKYC1Aklxwtb6g-ag44bBH2Cm00hFvKoQG4g", - "y": "vFkWnMwWMaaw_4OUZZMAAo7IFY5CLcCeAI2XPgPuiDU" + "x": "Y_2Ym6Q1edMBQg1juXOhwvSIFSXAM-soMGNzOeN1znM", + "y": "ICA0BrWpKzwkb2TSbqjM--oZsaR_kPRClQ2joSCAnPg" }, "attributes": { "enabled": true, - "created": 1560890087, - "updated": 1560890087, + "created": 1565113678, + "updated": 1565113678, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1435525461/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f57-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f3dcb3599ddd68130e85e38d68d72db0", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c15fab22-e248-4dfe-b7d5-5f2599f6cd20", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7dc1bab9-0842-4600-bf38-a7a5ed7e9efd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1435525461/a6f73f318ad44b5386b6b3b158694fa0", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002f030f8bb9689c4615a098b3a10ed25bb0", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ydY6P3QyKYC1Aklxwtb6g-ag44bBH2Cm00hFvKoQG4g", - "y": "vFkWnMwWMaaw_4OUZZMAAo7IFY5CLcCeAI2XPgPuiDU" + "x": "Y_2Ym6Q1edMBQg1juXOhwvSIFSXAM-soMGNzOeN1znM", + "y": "ICA0BrWpKzwkb2TSbqjM--oZsaR_kPRClQ2joSCAnPg" }, "attributes": { "enabled": true, - "created": 1560890087, - "updated": 1560890087, + "created": 1565113678, + "updated": 1565113678, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1435525461?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f58-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f9109a98779b74529dcdeb588be95fef", "x-ms-return-client-request-id": "true" @@ -128,79 +172,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b9af0cec-a5bd-4d0d-822d-8aa8e4e50c47", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "801d249f-3302-4d2a-9292-7a7af8bcdd9d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1435525461", - "deletedDate": 1560890087, - "scheduledPurgeDate": 1568666087, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1435525461", + "deletedDate": 1565113678, + "scheduledPurgeDate": 1572889678, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1435525461/a6f73f318ad44b5386b6b3b158694fa0", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1435525461\u002f030f8bb9689c4615a098b3a10ed25bb0", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ydY6P3QyKYC1Aklxwtb6g-ag44bBH2Cm00hFvKoQG4g", - "y": "vFkWnMwWMaaw_4OUZZMAAo7IFY5CLcCeAI2XPgPuiDU" + "x": "Y_2Ym6Q1edMBQg1juXOhwvSIFSXAM-soMGNzOeN1znM", + "y": "ICA0BrWpKzwkb2TSbqjM--oZsaR_kPRClQ2joSCAnPg" }, "attributes": { "enabled": true, - "created": 1560890087, - "updated": 1560890087, + "created": 1565113678, + "updated": 1565113678, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1435525461?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1435525461?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f5c-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a9eea2e28ea124f2d628f7f2af403122", + "x-ms-client-request-id": "6f46e44b450befbf58e0df038c68201f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:35:02 GMT", + "Date": "Tue, 06 Aug 2019 17:48:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "19d848e7-3ddf-4bba-b41f-c99599a42936", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dab2cbbf-7c11-4f86-be43-29e93bdd9671", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1224704756" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKey.json index 63cf82f47c9b..f9bdc02836a1 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1203357007/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea2-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "4125ca71fded7674a9b2bb998e55d399", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b85366b7-8355-4e3f-86bd-5e401f160f39", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "32", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4125ca71fded7674a9b2bb998e55d399", "x-ms-return-client-request-id": "true" @@ -23,50 +65,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c52def55-325f-456f-ac53-f34a3047505d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9196c5d6-b6e3-45b3-bd04-295ab99d5c8e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1203357007/8a95826846714ea1a985a2027b5718ba", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002f3b512039a3e640fa8e936f4f25e65930", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yOT666Evocs_J2NZoKiiAkH9ATprFynH3uwgm0rNniw", - "y": "J30ChVWIWoE19l4zcv39nBLg7tQZHn3visRDZeMt64I" + "x": "e2Hp3lijfclDi8hl4lgIuuBvFxWV3C7-nrR9kM6x2Bo", + "y": "ueD_9cJEjKQ3QCnvB6MTKIWur2xwZglkJOJBetvCjno" }, "attributes": { "enabled": true, - "created": 1560889807, - "updated": 1560889807, + "created": 1565113372, + "updated": 1565113372, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1203357007/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea3-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3adbc44dc7f62b8cf04caa36cc941777", "x-ms-return-client-request-id": "true" @@ -76,50 +119,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a05c0b2c-5e5d-4313-8092-7b20cd29e973", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8327d1e6-8f24-4858-95e5-759cf4cf3cd8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1203357007/8a95826846714ea1a985a2027b5718ba", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002f3b512039a3e640fa8e936f4f25e65930", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yOT666Evocs_J2NZoKiiAkH9ATprFynH3uwgm0rNniw", - "y": "J30ChVWIWoE19l4zcv39nBLg7tQZHn3visRDZeMt64I" + "x": "e2Hp3lijfclDi8hl4lgIuuBvFxWV3C7-nrR9kM6x2Bo", + "y": "ueD_9cJEjKQ3QCnvB6MTKIWur2xwZglkJOJBetvCjno" }, "attributes": { "enabled": true, - "created": 1560889807, - "updated": 1560889807, + "created": 1565113372, + "updated": 1565113372, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1203357007?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e01dc3f197eca864485116bec1ab1456", "x-ms-return-client-request-id": "true" @@ -129,53 +173,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:42:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6d9dbd7d-59c5-4eb8-8cb9-06dbc42e5011", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e57fb85e-469b-4c1a-8a69-59bb30365b59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1203357007", - "deletedDate": 1560889807, - "scheduledPurgeDate": 1568665807, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1203357007", + "deletedDate": 1565113372, + "scheduledPurgeDate": 1572889372, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1203357007/8a95826846714ea1a985a2027b5718ba", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1203357007\u002f3b512039a3e640fa8e936f4f25e65930", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yOT666Evocs_J2NZoKiiAkH9ATprFynH3uwgm0rNniw", - "y": "J30ChVWIWoE19l4zcv39nBLg7tQZHn3visRDZeMt64I" + "x": "e2Hp3lijfclDi8hl4lgIuuBvFxWV3C7-nrR9kM6x2Bo", + "y": "ueD_9cJEjKQ3QCnvB6MTKIWur2xwZglkJOJBetvCjno" }, "attributes": { "enabled": true, - "created": 1560889807, - "updated": 1560889807, + "created": 1565113372, + "updated": 1565113372, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1203357007?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1203357007?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ea9-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fe690c8f3ff236e5efd460c64fb96e9d", "x-ms-return-client-request-id": "true" @@ -184,24 +229,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:30:22 GMT", + "Date": "Tue, 06 Aug 2019 17:43:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d84a16f3-ee14-44d6-af4f-bf137d819491", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f81c228c-a153-45e4-8ab3-74501bfffa47", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1000952390" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKeyAsync.json index 472a9b596b14..f28d4b31ef9d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateEcWithCurveKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/252634151/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f5e-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "52ae8d7881db6d1e244637e98ce2f197", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7a43eaa9-2482-46ec-9d60-57f98ffdbff7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "32", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f5e-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "52ae8d7881db6d1e244637e98ce2f197", "x-ms-return-client-request-id": "true" @@ -23,50 +65,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7d0cf527-df76-49f3-9796-9c0a85aa4c6b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e421f546-e274-4323-9837-b9995b4bdc28", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/252634151/07b0a53bdaa14746a05c8abc07902420", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002fb179152b78d24335bd454ee5356714a9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "_ZXBCXDn71UyYMsjITecTxea-wK0QQwMQSzgvXdw7o4", - "y": "JLVdd0e_sfnLmBwGhCbJBzRK8ajm76ka_02mRbCIMEo" + "x": "AmR6yJQ-qkwKalyWkWYzwzGeLkt1XKhJmjZ3Lo-qqXc", + "y": "NwC9mapLVVFsHN1ZFuZJcb3zpi5Czr9KZz-QsgbJTE8" }, "attributes": { "enabled": true, - "created": 1560890103, - "updated": 1560890103, + "created": 1565113689, + "updated": 1565113689, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/252634151/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f5f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2d60e72ceb771bd7f807f26728f20215", "x-ms-return-client-request-id": "true" @@ -76,50 +119,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8a3908e1-449a-42ad-b79d-dd525bdad78a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6f8f5097-5a8c-49b9-a34e-9ab1f6be9825", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/252634151/07b0a53bdaa14746a05c8abc07902420", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002fb179152b78d24335bd454ee5356714a9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "_ZXBCXDn71UyYMsjITecTxea-wK0QQwMQSzgvXdw7o4", - "y": "JLVdd0e_sfnLmBwGhCbJBzRK8ajm76ka_02mRbCIMEo" + "x": "AmR6yJQ-qkwKalyWkWYzwzGeLkt1XKhJmjZ3Lo-qqXc", + "y": "NwC9mapLVVFsHN1ZFuZJcb3zpi5Czr9KZz-QsgbJTE8" }, "attributes": { "enabled": true, - "created": 1560890103, - "updated": 1560890103, + "created": 1565113689, + "updated": 1565113689, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/252634151?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f60-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2d791917dd228d38119b0323bb19e56c", "x-ms-return-client-request-id": "true" @@ -129,53 +173,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cfb61b59-3d86-4fcd-933a-e3d75358c8ff", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5afe4629-f0fc-4c06-b429-0c0098c51433", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/252634151", - "deletedDate": 1560890103, - "scheduledPurgeDate": 1568666103, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f252634151", + "deletedDate": 1565113689, + "scheduledPurgeDate": 1572889689, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/252634151/07b0a53bdaa14746a05c8abc07902420", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f252634151\u002fb179152b78d24335bd454ee5356714a9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "_ZXBCXDn71UyYMsjITecTxea-wK0QQwMQSzgvXdw7o4", - "y": "JLVdd0e_sfnLmBwGhCbJBzRK8ajm76ka_02mRbCIMEo" + "x": "AmR6yJQ-qkwKalyWkWYzwzGeLkt1XKhJmjZ3Lo-qqXc", + "y": "NwC9mapLVVFsHN1ZFuZJcb3zpi5Czr9KZz-QsgbJTE8" }, "attributes": { "enabled": true, - "created": 1560890103, - "updated": 1560890103, + "created": 1565113689, + "updated": 1565113689, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/252634151?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f252634151?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f65-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0ab37b340dcb94cb3ec2097d4de5cc4b", "x-ms-return-client-request-id": "true" @@ -184,24 +229,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:35:19 GMT", + "Date": "Tue, 06 Aug 2019 17:48:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "feae396b-aa29-45ad-bb85-56249a021839", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f363edb5-7f6f-4a59-bac3-d66bce8a166d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1767075594" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKey.json index 4c1db7772c7a..ea38bc85634e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/62898117/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eab-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "8dfcb216f26a78f3e84c86eda8b5cc81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "712bfbab-0b7d-4e82-847f-a419eae52b7e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eab-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8dfcb216f26a78f3e84c86eda8b5cc81", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "369", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1023a814-3c3c-406c-b687-4d52ff2b8bad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "02441e57-630f-495f-b79c-b43cdcffefab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/62898117/915c19301abf44a288c9fe3e8f1d9a5e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002ff5550a654465455da0a011affcb7966d", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "IMZhCxVY9b6mBmZoRXHg7uIwQx4q87zH9gaS5AUfN80", - "y": "qKGcBQmRGOxFcWKo26D2z8B3lGr283Q8F6paYRzwXk8" + "x": "gVgKDhoe6lMfd8z7b1x6Apix6G8nX3TuaC-rXDgGTyw", + "y": "vgqX9HyQLkYcpopP5gfN4S_LUSRcIPl_dlEFH_VSHD4" }, "attributes": { "enabled": true, - "created": 1560889823, - "updated": 1560889823, + "created": 1565113388, + "updated": 1565113388, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/62898117/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eac-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dd187dc6a2af7ecfe26c4004a4ca6171", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "369", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0b9cc783-71a6-4f9c-8dd2-619cbc8eaa21", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c4b3e67b-a568-4aa7-881b-3f971abe09cf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/62898117/915c19301abf44a288c9fe3e8f1d9a5e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002ff5550a654465455da0a011affcb7966d", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "IMZhCxVY9b6mBmZoRXHg7uIwQx4q87zH9gaS5AUfN80", - "y": "qKGcBQmRGOxFcWKo26D2z8B3lGr283Q8F6paYRzwXk8" + "x": "gVgKDhoe6lMfd8z7b1x6Apix6G8nX3TuaC-rXDgGTyw", + "y": "vgqX9HyQLkYcpopP5gfN4S_LUSRcIPl_dlEFH_VSHD4" }, "attributes": { "enabled": true, - "created": 1560889823, - "updated": 1560889823, + "created": 1565113388, + "updated": 1565113388, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/62898117?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ead-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9a21d83965b5602679d0f042954a85aa", "x-ms-return-client-request-id": "true" @@ -128,53 +172,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "502", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fb787df1-f68a-4ed6-8d3f-ca04d59a3387", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ce93e9ba-efbc-4654-9ae6-cc6e7a2fab53", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/62898117", - "deletedDate": 1560889823, - "scheduledPurgeDate": 1568665823, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f62898117", + "deletedDate": 1565113388, + "scheduledPurgeDate": 1572889388, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/62898117/915c19301abf44a288c9fe3e8f1d9a5e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f62898117\u002ff5550a654465455da0a011affcb7966d", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "IMZhCxVY9b6mBmZoRXHg7uIwQx4q87zH9gaS5AUfN80", - "y": "qKGcBQmRGOxFcWKo26D2z8B3lGr283Q8F6paYRzwXk8" + "x": "gVgKDhoe6lMfd8z7b1x6Apix6G8nX3TuaC-rXDgGTyw", + "y": "vgqX9HyQLkYcpopP5gfN4S_LUSRcIPl_dlEFH_VSHD4" }, "attributes": { "enabled": true, - "created": 1560889823, - "updated": 1560889823, + "created": 1565113388, + "updated": 1565113388, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/62898117?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f62898117?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eb2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1b1713954df63c95da880ce67a94a72e", "x-ms-return-client-request-id": "true" @@ -183,24 +228,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:30:38 GMT", + "Date": "Tue, 06 Aug 2019 17:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2a208e07-d4bd-494a-8f83-2591546566e9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f07552e7-6fc2-4a07-848d-7ab92065e58a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "367009498" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyAsync.json index 098e4d5d26aa..9fda8584500d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1027930873/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f67-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "0523aee4808a0586ef14e3daffbd3a99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "468ac52e-c1d7-4740-950f-ecbe8c6102c8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f67-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0523aee4808a0586ef14e3daffbd3a99", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6703e753-569f-4419-806e-0f7b08071ac6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0c6efcc5-f3dd-4fb1-bbcb-cc2684579019", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1027930873/6b267403ece34cb0a91eb56ad0d0087c", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002f3ac5737ae0d64fb689a53cb6327bf937", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "vOo2PKTYkv6WnmyTpOJZvNz9gNeXTTS-2YsRzYBwjPY", - "y": "h4dkvNVxKqYCaVmIbFvoHdihmeYh4VBGfMuyXWvo0Js" + "x": "vO_seJv_X7sXRLqrFPBMhnzm4dm30Db8PO2xgy0MJoo", + "y": "Nd08S2uJ1kKek-fYQXjrdqOXGDblJ9JDGVqebURCnlc" }, "attributes": { "enabled": true, - "created": 1560890119, - "updated": 1560890119, + "created": 1565113705, + "updated": 1565113705, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1027930873/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f68-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "576a7a4255a83972e116cb344eca8879", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9e678398-3bc4-43e4-9a7c-944bab0a825f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b26c4e53-ee59-4b5b-a8f4-f69c7a3fa2a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1027930873/6b267403ece34cb0a91eb56ad0d0087c", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002f3ac5737ae0d64fb689a53cb6327bf937", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "vOo2PKTYkv6WnmyTpOJZvNz9gNeXTTS-2YsRzYBwjPY", - "y": "h4dkvNVxKqYCaVmIbFvoHdihmeYh4VBGfMuyXWvo0Js" + "x": "vO_seJv_X7sXRLqrFPBMhnzm4dm30Db8PO2xgy0MJoo", + "y": "Nd08S2uJ1kKek-fYQXjrdqOXGDblJ9JDGVqebURCnlc" }, "attributes": { "enabled": true, - "created": 1560890119, - "updated": 1560890119, + "created": 1565113705, + "updated": 1565113705, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1027930873?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f69-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "050b7f28992bcb46389148739cf237a2", "x-ms-return-client-request-id": "true" @@ -128,79 +172,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8bbff33f-b7e2-4d77-83aa-3e9353e088e9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "539e485a-7c7d-4dfc-b4bc-38acb15f3de4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1027930873", - "deletedDate": 1560890119, - "scheduledPurgeDate": 1568666119, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1027930873", + "deletedDate": 1565113705, + "scheduledPurgeDate": 1572889705, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1027930873/6b267403ece34cb0a91eb56ad0d0087c", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1027930873\u002f3ac5737ae0d64fb689a53cb6327bf937", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "vOo2PKTYkv6WnmyTpOJZvNz9gNeXTTS-2YsRzYBwjPY", - "y": "h4dkvNVxKqYCaVmIbFvoHdihmeYh4VBGfMuyXWvo0Js" + "x": "vO_seJv_X7sXRLqrFPBMhnzm4dm30Db8PO2xgy0MJoo", + "y": "Nd08S2uJ1kKek-fYQXjrdqOXGDblJ9JDGVqebURCnlc" }, "attributes": { "enabled": true, - "created": 1560890119, - "updated": 1560890119, + "created": 1565113705, + "updated": 1565113705, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1027930873?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1027930873?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f6f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8b95344c44d652e6a37850346a2b3461", + "x-ms-client-request-id": "e93c3887691827ae38f5045b1fb06af5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:35:34 GMT", + "Date": "Tue, 06 Aug 2019 17:48:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ffd6683f-6be6-4fd7-ac9c-7e552abdf532", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d6d1b44-3582-412f-96cf-5b844ddc2017", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1411237541" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptions.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptions.json index 561a4b6e4bc1..61f927f69006 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptions.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptions.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1815279286/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eb4-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "e83a24ef2de77eb25ef6e7d8d6054a39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ea010e33-10b6-4226-84da-859dfc6bdb5c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "64", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eb4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e83a24ef2de77eb25ef6e7d8d6054a39", "x-ms-return-client-request-id": "true" @@ -28,49 +70,50 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "365", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b2f5f309-ffbb-431d-bea7-af48ca933e2a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c5c92a1f-f318-4b6b-873c-1947bf6c573c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1815279286/414d199cf0ec46d7b0ff332472b36598", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002fb42ac95da9694f2ca1f676621d433150", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "1WfKQ1wePucQ73NURiAZ83CqbPJV0jVWRJrbX-O13MI", - "y": "oeQJ1cvRIgdX54qNHKIBNKeHnIjXAmaFeD1HdRPZMXY" + "x": "fhL8E5WvLKvZCB8CuT-VE2pz9WgGHyKUTZAooJIqhLc", + "y": "aJWhiZgaLjtP0J7ZBNEAKv3fShqjUZleGrQbinhGyp0" }, "attributes": { "enabled": false, - "created": 1560889839, - "updated": 1560889839, + "created": 1565113404, + "updated": 1565113404, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1815279286/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eb5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8edacca8107fc48b50254c1cb363e22a", "x-ms-return-client-request-id": "true" @@ -80,49 +123,50 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "365", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "738cf97a-0f02-4b39-ac11-161acee6a990", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fba45129-d96b-4fff-a61e-6e14af602085", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1815279286/414d199cf0ec46d7b0ff332472b36598", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002fb42ac95da9694f2ca1f676621d433150", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "1WfKQ1wePucQ73NURiAZ83CqbPJV0jVWRJrbX-O13MI", - "y": "oeQJ1cvRIgdX54qNHKIBNKeHnIjXAmaFeD1HdRPZMXY" + "x": "fhL8E5WvLKvZCB8CuT-VE2pz9WgGHyKUTZAooJIqhLc", + "y": "aJWhiZgaLjtP0J7ZBNEAKv3fShqjUZleGrQbinhGyp0" }, "attributes": { "enabled": false, - "created": 1560889839, - "updated": 1560889839, + "created": 1565113404, + "updated": 1565113404, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1815279286?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eb6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8767900348545562c889c2f6caa89623", "x-ms-return-client-request-id": "true" @@ -132,52 +176,53 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "500", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "addce577-d055-4eaa-9219-797cc46051a6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "af731d1b-d680-4d8e-a632-5d27259cd73a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1815279286", - "deletedDate": 1560889839, - "scheduledPurgeDate": 1568665839, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1815279286", + "deletedDate": 1565113404, + "scheduledPurgeDate": 1572889404, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1815279286/414d199cf0ec46d7b0ff332472b36598", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1815279286\u002fb42ac95da9694f2ca1f676621d433150", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "1WfKQ1wePucQ73NURiAZ83CqbPJV0jVWRJrbX-O13MI", - "y": "oeQJ1cvRIgdX54qNHKIBNKeHnIjXAmaFeD1HdRPZMXY" + "x": "fhL8E5WvLKvZCB8CuT-VE2pz9WgGHyKUTZAooJIqhLc", + "y": "aJWhiZgaLjtP0J7ZBNEAKv3fShqjUZleGrQbinhGyp0" }, "attributes": { "enabled": false, - "created": 1560889839, - "updated": 1560889839, + "created": 1565113404, + "updated": 1565113404, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1815279286?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1815279286?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ebb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b731f17cfb0ed6ec5bd4ed15d407b0c9", "x-ms-return-client-request-id": "true" @@ -186,24 +231,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:30:54 GMT", + "Date": "Tue, 06 Aug 2019 17:43:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1d415d10-ea2e-4de5-bf5c-1f9cfd0786ff", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ca02434d-a7d8-4fc9-a2f4-d38677b36f03", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "647661522" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptionsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptionsAsync.json index 0a7b17ccd941..08f0b137dbf9 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptionsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateKeyWithOptionsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1174488637/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f71-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "05954f6c6741d8bcb21aa2cb9d588ee7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "98e33c26-46c8-4921-8f47-5bfb59fa60a3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "64", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f71-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "05954f6c6741d8bcb21aa2cb9d588ee7", "x-ms-return-client-request-id": "true" @@ -28,49 +70,50 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "365", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:35 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c3ffbf7a-1764-48f3-b903-dbe5836c493c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "35391a68-e518-4c52-b685-1a834547b760", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1174488637/bf9591928c74402c995fe1709b18fcfd", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002f3453e9bd665f4d8ea7428b7282b7dc49", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "W73-4D4xOEUh0zGJQrzuI4rQJMLyBGEM15-UjdHbeIA", - "y": "SUXUbeLNdg0A5pKgf_DqRIseDlkohpjruqOAL3GWxso" + "x": "OtVAfKR8cOPrtO7Cjd9FvTZq3rNzf8e-ZS9OC2S_7e0", + "y": "kOuyMhHZPiJzIOcsytFzQVZ8Bn1AdOosowKOsy2PILA" }, "attributes": { "enabled": false, - "created": 1560890135, - "updated": 1560890135, + "created": 1565113726, + "updated": 1565113726, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1174488637/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f72-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b1057d15e4de45d7f48676d39dba7ece", "x-ms-return-client-request-id": "true" @@ -80,49 +123,50 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "365", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:35 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9aa9208b-b1ef-42a4-a433-ff114beeecbc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "48012c65-6aa3-480a-a10c-0e8921a7f36d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1174488637/bf9591928c74402c995fe1709b18fcfd", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002f3453e9bd665f4d8ea7428b7282b7dc49", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "W73-4D4xOEUh0zGJQrzuI4rQJMLyBGEM15-UjdHbeIA", - "y": "SUXUbeLNdg0A5pKgf_DqRIseDlkohpjruqOAL3GWxso" + "x": "OtVAfKR8cOPrtO7Cjd9FvTZq3rNzf8e-ZS9OC2S_7e0", + "y": "kOuyMhHZPiJzIOcsytFzQVZ8Bn1AdOosowKOsy2PILA" }, "attributes": { "enabled": false, - "created": 1560890135, - "updated": 1560890135, + "created": 1565113726, + "updated": 1565113726, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1174488637?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f73-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4bbab579f5f862cfde6fca5f4f347407", "x-ms-return-client-request-id": "true" @@ -132,52 +176,53 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "500", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:35 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7e42c5c1-9bd4-4133-911e-281086415423", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c6624383-249d-4773-80e2-3e76ef489be3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1174488637", - "deletedDate": 1560890135, - "scheduledPurgeDate": 1568666135, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1174488637", + "deletedDate": 1565113726, + "scheduledPurgeDate": 1572889726, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1174488637/bf9591928c74402c995fe1709b18fcfd", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1174488637\u002f3453e9bd665f4d8ea7428b7282b7dc49", "kty": "EC", "key_ops": [ "verify" ], "crv": "P-256", - "x": "W73-4D4xOEUh0zGJQrzuI4rQJMLyBGEM15-UjdHbeIA", - "y": "SUXUbeLNdg0A5pKgf_DqRIseDlkohpjruqOAL3GWxso" + "x": "OtVAfKR8cOPrtO7Cjd9FvTZq3rNzf8e-ZS9OC2S_7e0", + "y": "kOuyMhHZPiJzIOcsytFzQVZ8Bn1AdOosowKOsy2PILA" }, "attributes": { "enabled": false, - "created": 1560890135, - "updated": 1560890135, + "created": 1565113726, + "updated": 1565113726, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1174488637?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1174488637?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f78-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "81a9515ab9bc2de6c90c916c6e473b99", "x-ms-return-client-request-id": "true" @@ -186,24 +231,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:35:50 GMT", + "Date": "Tue, 06 Aug 2019 17:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3de33fdc-c88a-48bc-856c-ad038ba9bf7c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5b132171-d8c0-4450-a400-109685518d38", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "659908472" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKey.json index 873909e06437..38c412cf9b57 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/625710934/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ebd-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "b313312cfb42157d32048ddc91e03a78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f287cb09-15c5-41c8-abc6-2bf975d7510e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ebd-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b313312cfb42157d32048ddc91e03a78", "x-ms-return-client-request-id": "true" @@ -22,23 +64,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8215e293-5962-4180-903f-bd459a9d78bd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0f973700-b79b-45d9-bc09-0e3ad81e1198", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/625710934/fd899b07e6974d9087f1e34722a41012", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002f503ae6a620b8458c92aaf793e54c6561", "kty": "RSA", "key_ops": [ "encrypt", @@ -48,27 +90,28 @@ "wrapKey", "unwrapKey" ], - "n": "nBxw5J5JDyDqbNiYj663X-Cq1e7eOknqKNZKYF9wIq6VsvM-duShmBtHOdnUrxnwFnC_BLxuZjvb_JH6HYn3iIOHSZ0rep6Oq4GJn_e3SjfLeKmxuBllV9lih8W7dKRBXm3VuIz4haXTS1kV4rbN8emU2-fo6LvNl-tSK0wYxX6YOMy2PFkVd-Q-FyHitUYeb5TMsQTfOujWM8mBhEH1DW0u-yQ7bps3UteTUViBtmgpm2-MUBHQv47k5z0TKrQBOOyTSe2P22NkRPs8Shuy9chKdzTRWkRtZ0Kzo86EyTswWdlxPVvdLZKPWwRf_E1M4CGSgJ3b0oNyrZI3g_T4LQ", + "n": "tut_437IXMJ9kAj9_hdgt7vhM7pX0TcdsuPThTcMLZrUMycZdq5hBWQjZbcFHa4-ZzYRnw7HN3f7k81px7OxUfyc5XeZRzaBckNh5aLgmXnYN8M7w4EpG5k47x17X_LheENhR5NP-gA-j4C5SQJlfukGkDoewWBs2KqJbGLq4R7BUQmfgkWUqI_Kz5s1acfsZZxjuSoJuHB-PHMEhIDPTJ_hepgDJcr_I7NjfHgdG1jfdDTJlKv_ssJTbQuaiHLVofqPgfkZj3nWsPmeC-80S2HRrZubUtpSeOWaO9hjZWh60SiArY3mDJFDOC_yhBbEszT8kL9UuC82PgeoYtGckw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889855, - "updated": 1560889855, + "created": 1565113420, + "updated": 1565113420, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/625710934/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ebe-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2461e1e82b2f1158741acaf92dc1041a", "x-ms-return-client-request-id": "true" @@ -78,23 +121,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c9921e77-c243-403a-9d94-a6833b41ccb6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2755dc2d-f1ef-4f77-9ce9-75a2e7c08c88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/625710934/fd899b07e6974d9087f1e34722a41012", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002f503ae6a620b8458c92aaf793e54c6561", "kty": "RSA", "key_ops": [ "encrypt", @@ -104,27 +147,28 @@ "wrapKey", "unwrapKey" ], - "n": "nBxw5J5JDyDqbNiYj663X-Cq1e7eOknqKNZKYF9wIq6VsvM-duShmBtHOdnUrxnwFnC_BLxuZjvb_JH6HYn3iIOHSZ0rep6Oq4GJn_e3SjfLeKmxuBllV9lih8W7dKRBXm3VuIz4haXTS1kV4rbN8emU2-fo6LvNl-tSK0wYxX6YOMy2PFkVd-Q-FyHitUYeb5TMsQTfOujWM8mBhEH1DW0u-yQ7bps3UteTUViBtmgpm2-MUBHQv47k5z0TKrQBOOyTSe2P22NkRPs8Shuy9chKdzTRWkRtZ0Kzo86EyTswWdlxPVvdLZKPWwRf_E1M4CGSgJ3b0oNyrZI3g_T4LQ", + "n": "tut_437IXMJ9kAj9_hdgt7vhM7pX0TcdsuPThTcMLZrUMycZdq5hBWQjZbcFHa4-ZzYRnw7HN3f7k81px7OxUfyc5XeZRzaBckNh5aLgmXnYN8M7w4EpG5k47x17X_LheENhR5NP-gA-j4C5SQJlfukGkDoewWBs2KqJbGLq4R7BUQmfgkWUqI_Kz5s1acfsZZxjuSoJuHB-PHMEhIDPTJ_hepgDJcr_I7NjfHgdG1jfdDTJlKv_ssJTbQuaiHLVofqPgfkZj3nWsPmeC-80S2HRrZubUtpSeOWaO9hjZWh60SiArY3mDJFDOC_yhBbEszT8kL9UuC82PgeoYtGckw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889855, - "updated": 1560889855, + "created": 1565113420, + "updated": 1565113420, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/625710934?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ebf-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e0fb861df7fd2c68b9f0cf3d9db90824", "x-ms-return-client-request-id": "true" @@ -134,26 +178,26 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "793", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:30:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b18813e0-9a69-4cbb-a98d-80384a77c3a5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6c684ca5-36ed-4217-8a77-cf63bce438c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/625710934", - "deletedDate": 1560889855, - "scheduledPurgeDate": 1568665855, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f625710934", + "deletedDate": 1565113420, + "scheduledPurgeDate": 1572889420, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/625710934/fd899b07e6974d9087f1e34722a41012", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f625710934\u002f503ae6a620b8458c92aaf793e54c6561", "kty": "RSA", "key_ops": [ "encrypt", @@ -163,27 +207,28 @@ "wrapKey", "unwrapKey" ], - "n": "nBxw5J5JDyDqbNiYj663X-Cq1e7eOknqKNZKYF9wIq6VsvM-duShmBtHOdnUrxnwFnC_BLxuZjvb_JH6HYn3iIOHSZ0rep6Oq4GJn_e3SjfLeKmxuBllV9lih8W7dKRBXm3VuIz4haXTS1kV4rbN8emU2-fo6LvNl-tSK0wYxX6YOMy2PFkVd-Q-FyHitUYeb5TMsQTfOujWM8mBhEH1DW0u-yQ7bps3UteTUViBtmgpm2-MUBHQv47k5z0TKrQBOOyTSe2P22NkRPs8Shuy9chKdzTRWkRtZ0Kzo86EyTswWdlxPVvdLZKPWwRf_E1M4CGSgJ3b0oNyrZI3g_T4LQ", + "n": "tut_437IXMJ9kAj9_hdgt7vhM7pX0TcdsuPThTcMLZrUMycZdq5hBWQjZbcFHa4-ZzYRnw7HN3f7k81px7OxUfyc5XeZRzaBckNh5aLgmXnYN8M7w4EpG5k47x17X_LheENhR5NP-gA-j4C5SQJlfukGkDoewWBs2KqJbGLq4R7BUQmfgkWUqI_Kz5s1acfsZZxjuSoJuHB-PHMEhIDPTJ_hepgDJcr_I7NjfHgdG1jfdDTJlKv_ssJTbQuaiHLVofqPgfkZj3nWsPmeC-80S2HRrZubUtpSeOWaO9hjZWh60SiArY3mDJFDOC_yhBbEszT8kL9UuC82PgeoYtGckw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889855, - "updated": 1560889855, + "created": 1565113420, + "updated": 1565113420, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/625710934?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f625710934?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ec4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8a16848dfeb9d96c2a77abea51803937", "x-ms-return-client-request-id": "true" @@ -192,24 +237,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:31:10 GMT", + "Date": "Tue, 06 Aug 2019 17:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7ac54cfb-8ae2-4dd4-b071-c4d0faaac40a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "06d59215-f875-4714-846e-f4a24c1eb90a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "205833507" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKeyAsync.json index b141a3c8aa99..74f376839a19 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/528552223/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f7a-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "99b63ac316a56c86e91de19b38521bc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "26f5f4a6-3976-4ca7-97a4-03b0fbc7a277", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f7a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "99b63ac316a56c86e91de19b38521bc1", "x-ms-return-client-request-id": "true" @@ -22,23 +64,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bd5e2fc0-f2e7-4366-ba2e-0e0c98037858", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d00e9e69-5726-4044-adbf-9c11be4db42e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/528552223/df57fbdedd3d4b48bf8f1d1f9dfea503", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002f15dd4a03d2104de5aee17ad92cc58919", "kty": "RSA", "key_ops": [ "encrypt", @@ -48,27 +90,28 @@ "wrapKey", "unwrapKey" ], - "n": "i-YXQTZaW_R9hUfDR0Q_73BCqjis24tIH2LCRobvUmmgjZ7XtCeqbAdeCJ1WFW9MYc9KvmTnhHCyuILlPZ4YV4M0KFc6blDaFsqQgC9wdev8CUqTn3TxqVsYDF4tg762ntV5XoeS7xI1SCfwCmmwQL7zy2Cfvy7cT3y7Z_8rloD5QW4YYlx6GRUXlIdkLz4rFtNUa9r2bgsLxqX3TDwXKguhb11M3IfuLpE8hF2-5GRrjAOEdOzV6BKdKRbPar-USyE91P4zoQlFyYB60l6MCC4ImEhHL1xdq9u5_8zayIvf5pScDnH9vO09egLKSCQXpYCAwcLxrBx_YatXiwsJWw", + "n": "nXB5SUbAAf3ZaiSZyJXljIqTNTBDrQNojt1s71-uBQUB9bn_lQtMGkonSP8L9okUBzvcfNqVfQKKFQSKtQvELeL9vMT5EtA7mcUc746DgZAKykIsgvigyp3mp5mV4-Si1AZuKanyn_If5owB76VLFZT-0wmZHqWO6UtzP0ylPo1G2RRfsyptkiu6mBcjEOL_Lav63NghFsv-BtldJ_2rwo9KsTZNyNIQFm5GSYxq77EFxCJOqfd-eSMF7fERURmmE5Zk5JK-Npk-QV7aft3RKiz2hcWMx1HrZYxsWX77zIMdiAy2eclkupee5h1u7Le9SJnckVi3_RK6Obp0I7avLw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890151, - "updated": 1560890151, + "created": 1565113742, + "updated": 1565113742, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/528552223/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f7b-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b34ebb017aed06020c9ab4c1639212c9", "x-ms-return-client-request-id": "true" @@ -78,23 +121,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b48c6366-7510-4f6e-9988-c646483b43db", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7e02f99e-47cc-4be0-a6f9-7bde3d93d894", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/528552223/df57fbdedd3d4b48bf8f1d1f9dfea503", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002f15dd4a03d2104de5aee17ad92cc58919", "kty": "RSA", "key_ops": [ "encrypt", @@ -104,27 +147,28 @@ "wrapKey", "unwrapKey" ], - "n": "i-YXQTZaW_R9hUfDR0Q_73BCqjis24tIH2LCRobvUmmgjZ7XtCeqbAdeCJ1WFW9MYc9KvmTnhHCyuILlPZ4YV4M0KFc6blDaFsqQgC9wdev8CUqTn3TxqVsYDF4tg762ntV5XoeS7xI1SCfwCmmwQL7zy2Cfvy7cT3y7Z_8rloD5QW4YYlx6GRUXlIdkLz4rFtNUa9r2bgsLxqX3TDwXKguhb11M3IfuLpE8hF2-5GRrjAOEdOzV6BKdKRbPar-USyE91P4zoQlFyYB60l6MCC4ImEhHL1xdq9u5_8zayIvf5pScDnH9vO09egLKSCQXpYCAwcLxrBx_YatXiwsJWw", + "n": "nXB5SUbAAf3ZaiSZyJXljIqTNTBDrQNojt1s71-uBQUB9bn_lQtMGkonSP8L9okUBzvcfNqVfQKKFQSKtQvELeL9vMT5EtA7mcUc746DgZAKykIsgvigyp3mp5mV4-Si1AZuKanyn_If5owB76VLFZT-0wmZHqWO6UtzP0ylPo1G2RRfsyptkiu6mBcjEOL_Lav63NghFsv-BtldJ_2rwo9KsTZNyNIQFm5GSYxq77EFxCJOqfd-eSMF7fERURmmE5Zk5JK-Npk-QV7aft3RKiz2hcWMx1HrZYxsWX77zIMdiAy2eclkupee5h1u7Le9SJnckVi3_RK6Obp0I7avLw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890151, - "updated": 1560890151, + "created": 1565113742, + "updated": 1565113742, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/528552223?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f7c-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a05f98fa2ad332c855e6a171c14cc6ee", "x-ms-return-client-request-id": "true" @@ -134,26 +178,26 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "793", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:35:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b6947808-e1c3-4389-8073-f50ca8cec962", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9df0c971-8366-4476-8db5-1b96ff86c5af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/528552223", - "deletedDate": 1560890151, - "scheduledPurgeDate": 1568666151, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f528552223", + "deletedDate": 1565113742, + "scheduledPurgeDate": 1572889742, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/528552223/df57fbdedd3d4b48bf8f1d1f9dfea503", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f528552223\u002f15dd4a03d2104de5aee17ad92cc58919", "kty": "RSA", "key_ops": [ "encrypt", @@ -163,27 +207,28 @@ "wrapKey", "unwrapKey" ], - "n": "i-YXQTZaW_R9hUfDR0Q_73BCqjis24tIH2LCRobvUmmgjZ7XtCeqbAdeCJ1WFW9MYc9KvmTnhHCyuILlPZ4YV4M0KFc6blDaFsqQgC9wdev8CUqTn3TxqVsYDF4tg762ntV5XoeS7xI1SCfwCmmwQL7zy2Cfvy7cT3y7Z_8rloD5QW4YYlx6GRUXlIdkLz4rFtNUa9r2bgsLxqX3TDwXKguhb11M3IfuLpE8hF2-5GRrjAOEdOzV6BKdKRbPar-USyE91P4zoQlFyYB60l6MCC4ImEhHL1xdq9u5_8zayIvf5pScDnH9vO09egLKSCQXpYCAwcLxrBx_YatXiwsJWw", + "n": "nXB5SUbAAf3ZaiSZyJXljIqTNTBDrQNojt1s71-uBQUB9bn_lQtMGkonSP8L9okUBzvcfNqVfQKKFQSKtQvELeL9vMT5EtA7mcUc746DgZAKykIsgvigyp3mp5mV4-Si1AZuKanyn_If5owB76VLFZT-0wmZHqWO6UtzP0ylPo1G2RRfsyptkiu6mBcjEOL_Lav63NghFsv-BtldJ_2rwo9KsTZNyNIQFm5GSYxq77EFxCJOqfd-eSMF7fERURmmE5Zk5JK-Npk-QV7aft3RKiz2hcWMx1HrZYxsWX77zIMdiAy2eclkupee5h1u7Le9SJnckVi3_RK6Obp0I7avLw", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890151, - "updated": 1560890151, + "created": 1565113742, + "updated": 1565113742, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/528552223?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f528552223?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f81-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9c37cb6b1e83db05e3e53adc13ca3837", "x-ms-return-client-request-id": "true" @@ -192,24 +237,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:36:06 GMT", + "Date": "Tue, 06 Aug 2019 17:49:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e4c9ac68-fc2b-44f4-b5d3-f9b36b4268ca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7648cab4-6e3d-472c-bdbc-396a6eda9a38", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "240049146" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKey.json index 003d504b3cda..740e2ccbdc7e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1402080399/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ec6-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "5bfa8ad6bb1c56265f200067e1a8b304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cf51b42f-21ba-435d-81c3-538fb7e6864c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "29", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ec6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5bfa8ad6bb1c56265f200067e1a8b304", "x-ms-return-client-request-id": "true" @@ -23,23 +65,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "660", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "faf252e8-5f63-4441-8165-522f913e1412", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3eb58493-6d67-42b2-8663-354d91b1ca86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1402080399/7e1e6ede640c4e859eb9a3abb90f658d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002f8f392444569148039746caf3d22a0aa0", "kty": "RSA", "key_ops": [ "encrypt", @@ -49,27 +91,28 @@ "wrapKey", "unwrapKey" ], - "n": "4mkta_c4L91QvtMPEH-awtyMg0XsruA6qvHxKT7QNpz9Hya1aQQO6FDJD4ixPk4KYtW2IsPFz7j0px4cFBWsaFbv31wU_kIZ4UKAT24cCdbXMFvo9VHT_ntngLILSPMjg8K6p694ogyoDNYM7-f5SfJ8Ml7Mut03rStS0uUEKaD0VqVa9fhhYvgCMnk_2iSGzwdY3VJQrimCvLB934Gw2M_dZjjwJxBaJw4AuQ5KryelWKGAqRu_z2AEjs_rU28kXvhNjQE_aQXrA3CZa73_gqxkw1zoOJgxa8qja1Mp_YyFO892z3YvRuOn9skkBFmCGXlGPyujxsoxt4R0_k8y4Q", + "n": "oeVqiuwKhJav9i1i_u0LOzufgD103hiLmRV_8laX3AQcX-pMdXp2OpQpU-RgupcfMQqhV9GlcCANtPk-_lAjc0YVZ1x3fQhyEevtHJp-QiMdH3SA2nGi7yZYvlUuStgB_6Lu_7N3aL4sWIDkyB9EhqoWuqBEsapTJuE221eYcXy-qmfD_9XLDlUY58bumR--_t2hv2pWi8YfuYUCCQadiBnB-ctuB58IdFCoKbPwj-quufTZc9BV2DfInkTO6bRcHYOkiI7_oMk8vQgeMmZPLKqHGti7IdZ-xAEaOUoCbiqX8edNa5irX7oV0yL7rBoOMI8yZwZsTXpCDV8VXj4aBQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889871, - "updated": 1560889871, + "created": 1565113436, + "updated": 1565113436, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1402080399/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ec7-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fa5e4aa2665e377660b970f19a4430e9", "x-ms-return-client-request-id": "true" @@ -79,23 +122,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "660", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e29e8ac-11ff-477b-8438-78b52d858231", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c152e42e-0b7b-4eab-bd15-20952177aabb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1402080399/7e1e6ede640c4e859eb9a3abb90f658d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002f8f392444569148039746caf3d22a0aa0", "kty": "RSA", "key_ops": [ "encrypt", @@ -105,27 +148,28 @@ "wrapKey", "unwrapKey" ], - "n": "4mkta_c4L91QvtMPEH-awtyMg0XsruA6qvHxKT7QNpz9Hya1aQQO6FDJD4ixPk4KYtW2IsPFz7j0px4cFBWsaFbv31wU_kIZ4UKAT24cCdbXMFvo9VHT_ntngLILSPMjg8K6p694ogyoDNYM7-f5SfJ8Ml7Mut03rStS0uUEKaD0VqVa9fhhYvgCMnk_2iSGzwdY3VJQrimCvLB934Gw2M_dZjjwJxBaJw4AuQ5KryelWKGAqRu_z2AEjs_rU28kXvhNjQE_aQXrA3CZa73_gqxkw1zoOJgxa8qja1Mp_YyFO892z3YvRuOn9skkBFmCGXlGPyujxsoxt4R0_k8y4Q", + "n": "oeVqiuwKhJav9i1i_u0LOzufgD103hiLmRV_8laX3AQcX-pMdXp2OpQpU-RgupcfMQqhV9GlcCANtPk-_lAjc0YVZ1x3fQhyEevtHJp-QiMdH3SA2nGi7yZYvlUuStgB_6Lu_7N3aL4sWIDkyB9EhqoWuqBEsapTJuE221eYcXy-qmfD_9XLDlUY58bumR--_t2hv2pWi8YfuYUCCQadiBnB-ctuB58IdFCoKbPwj-quufTZc9BV2DfInkTO6bRcHYOkiI7_oMk8vQgeMmZPLKqHGti7IdZ-xAEaOUoCbiqX8edNa5irX7oV0yL7rBoOMI8yZwZsTXpCDV8VXj4aBQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889871, - "updated": 1560889871, + "created": 1565113436, + "updated": 1565113436, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1402080399?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ec8-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4775ff2ae29ea8e5a2aa78ca5ec359f3", "x-ms-return-client-request-id": "true" @@ -135,26 +179,26 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "795", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:11 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "75b82926-bc01-4222-86d1-bf2e85bad059", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6647b5f2-bf87-4bc3-9e7e-ac77cceb297c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1402080399", - "deletedDate": 1560889871, - "scheduledPurgeDate": 1568665871, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1402080399", + "deletedDate": 1565113436, + "scheduledPurgeDate": 1572889436, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1402080399/7e1e6ede640c4e859eb9a3abb90f658d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1402080399\u002f8f392444569148039746caf3d22a0aa0", "kty": "RSA", "key_ops": [ "encrypt", @@ -164,53 +208,54 @@ "wrapKey", "unwrapKey" ], - "n": "4mkta_c4L91QvtMPEH-awtyMg0XsruA6qvHxKT7QNpz9Hya1aQQO6FDJD4ixPk4KYtW2IsPFz7j0px4cFBWsaFbv31wU_kIZ4UKAT24cCdbXMFvo9VHT_ntngLILSPMjg8K6p694ogyoDNYM7-f5SfJ8Ml7Mut03rStS0uUEKaD0VqVa9fhhYvgCMnk_2iSGzwdY3VJQrimCvLB934Gw2M_dZjjwJxBaJw4AuQ5KryelWKGAqRu_z2AEjs_rU28kXvhNjQE_aQXrA3CZa73_gqxkw1zoOJgxa8qja1Mp_YyFO892z3YvRuOn9skkBFmCGXlGPyujxsoxt4R0_k8y4Q", + "n": "oeVqiuwKhJav9i1i_u0LOzufgD103hiLmRV_8laX3AQcX-pMdXp2OpQpU-RgupcfMQqhV9GlcCANtPk-_lAjc0YVZ1x3fQhyEevtHJp-QiMdH3SA2nGi7yZYvlUuStgB_6Lu_7N3aL4sWIDkyB9EhqoWuqBEsapTJuE221eYcXy-qmfD_9XLDlUY58bumR--_t2hv2pWi8YfuYUCCQadiBnB-ctuB58IdFCoKbPwj-quufTZc9BV2DfInkTO6bRcHYOkiI7_oMk8vQgeMmZPLKqHGti7IdZ-xAEaOUoCbiqX8edNa5irX7oV0yL7rBoOMI8yZwZsTXpCDV8VXj4aBQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560889871, - "updated": 1560889871, + "created": 1565113436, + "updated": 1565113436, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1402080399?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1402080399?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ece-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cd045eea7ad3cae25cbc132c3989d8e3", + "x-ms-client-request-id": "91c5e85891d0e716bc3c4fea80442b51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:31:26 GMT", + "Date": "Tue, 06 Aug 2019 17:44:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49f9bb30-08ff-4f59-bc27-79269f721aee", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e85b7d65-75d6-4509-a8a8-8097db76ae37", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "23474718" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKeyAsync.json index 02b603c3e08b..d079a4688329 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/CreateRsaWithSizeKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/795788076/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f83-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "afc1224fc55eac6e4b702026013aaa25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c9548389-656e-432e-b103-636e5ef340cc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "29", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f83-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "afc1224fc55eac6e4b702026013aaa25", "x-ms-return-client-request-id": "true" @@ -23,23 +65,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b30b62e2-677c-4a4e-860c-0ab0f489bcba", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2ff32fbb-93d1-4038-a8ad-e8d721411d6c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/795788076/06f1ce5dc3a046d286a6eec9304189f9", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002fb4e15998b2bb42bb802f322ec08ec5d8", "kty": "RSA", "key_ops": [ "encrypt", @@ -49,27 +91,28 @@ "wrapKey", "unwrapKey" ], - "n": "vzlUz_Uo66g7PZi_tVT9VD_14UsQEJn5fmzMBNenDQCeHq2HiaUYj-WJQ_NecoPtMiNr8Hr_l9CrLKcKsZaJR63aB8EL2Fit7OwUvl1JqmJxBT14iUAd8D0uvKGIrPoa_VxXNVnA0eZUGte34qI2yfm20Ag76DYtQulp2NJdl0Da4IkPxVDCaANaT2y9yUevO-JlIISh2SZrkxsuL6wAycsXQyFIYBSWva3nstg6os-3u5QYqY2CoRIkCzY9DM3ObYibD7AGtfANzRU-Uo5uA5mE1zMMGYLGE-XHLTQbPfKLF7nchMO6j6IrL-MnX4SnCiqpSl7hcyKl5QuTnZrxvw", + "n": "wIdUsrqV5OKZU_4aqtPFjRzfmQC6ojuOlgoM7PdH5972P7XLUYv36oq59zJQQ3b-SryUeqTDk4Dk7_FHcY-H7mVshaGGKvtd5EBOvkcY-Omjg-cE4x10qRRor_Sdl1yy-blXvJRfSoxjWHfinmXYf3VIKg-DugeXpa3vg4kZsGa90zdiDj5ZoPwuoSyHtp9PsAZh0yH5PeWGITejMKKQeP0C9lcldNb2TA4p2TYhxEb1wQbkNI6D1jlLrP5Qa39A1_rkA02i1Hu906DzGATGeFRK-lTQD6qO-bq90iHywfGtdFPfRtIDiReAFsi2xeLRYGOGahPFtEDebdLySMy4pQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890167, - "updated": 1560890167, + "created": 1565113758, + "updated": 1565113758, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/795788076/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f84-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "68b7c7313f7db13804a6414f3a677c86", "x-ms-return-client-request-id": "true" @@ -79,23 +122,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "659", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "39dc5288-a01b-4b75-8a96-c8c27326b83e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0af603c5-5670-4065-9da9-e6deca08ba3d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/795788076/06f1ce5dc3a046d286a6eec9304189f9", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002fb4e15998b2bb42bb802f322ec08ec5d8", "kty": "RSA", "key_ops": [ "encrypt", @@ -105,27 +148,28 @@ "wrapKey", "unwrapKey" ], - "n": "vzlUz_Uo66g7PZi_tVT9VD_14UsQEJn5fmzMBNenDQCeHq2HiaUYj-WJQ_NecoPtMiNr8Hr_l9CrLKcKsZaJR63aB8EL2Fit7OwUvl1JqmJxBT14iUAd8D0uvKGIrPoa_VxXNVnA0eZUGte34qI2yfm20Ag76DYtQulp2NJdl0Da4IkPxVDCaANaT2y9yUevO-JlIISh2SZrkxsuL6wAycsXQyFIYBSWva3nstg6os-3u5QYqY2CoRIkCzY9DM3ObYibD7AGtfANzRU-Uo5uA5mE1zMMGYLGE-XHLTQbPfKLF7nchMO6j6IrL-MnX4SnCiqpSl7hcyKl5QuTnZrxvw", + "n": "wIdUsrqV5OKZU_4aqtPFjRzfmQC6ojuOlgoM7PdH5972P7XLUYv36oq59zJQQ3b-SryUeqTDk4Dk7_FHcY-H7mVshaGGKvtd5EBOvkcY-Omjg-cE4x10qRRor_Sdl1yy-blXvJRfSoxjWHfinmXYf3VIKg-DugeXpa3vg4kZsGa90zdiDj5ZoPwuoSyHtp9PsAZh0yH5PeWGITejMKKQeP0C9lcldNb2TA4p2TYhxEb1wQbkNI6D1jlLrP5Qa39A1_rkA02i1Hu906DzGATGeFRK-lTQD6qO-bq90iHywfGtdFPfRtIDiReAFsi2xeLRYGOGahPFtEDebdLySMy4pQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890167, - "updated": 1560890167, + "created": 1565113758, + "updated": 1565113758, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/795788076?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f85-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "21d3e8cc637775a33fae00b059c08298", "x-ms-return-client-request-id": "true" @@ -135,26 +179,26 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "793", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "915a7558-ca1a-482b-ad82-38dca85f7fd9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5f8f03cf-7652-4945-9ddf-be61e77303e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/795788076", - "deletedDate": 1560890167, - "scheduledPurgeDate": 1568666167, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f795788076", + "deletedDate": 1565113758, + "scheduledPurgeDate": 1572889758, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/795788076/06f1ce5dc3a046d286a6eec9304189f9", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f795788076\u002fb4e15998b2bb42bb802f322ec08ec5d8", "kty": "RSA", "key_ops": [ "encrypt", @@ -164,27 +208,28 @@ "wrapKey", "unwrapKey" ], - "n": "vzlUz_Uo66g7PZi_tVT9VD_14UsQEJn5fmzMBNenDQCeHq2HiaUYj-WJQ_NecoPtMiNr8Hr_l9CrLKcKsZaJR63aB8EL2Fit7OwUvl1JqmJxBT14iUAd8D0uvKGIrPoa_VxXNVnA0eZUGte34qI2yfm20Ag76DYtQulp2NJdl0Da4IkPxVDCaANaT2y9yUevO-JlIISh2SZrkxsuL6wAycsXQyFIYBSWva3nstg6os-3u5QYqY2CoRIkCzY9DM3ObYibD7AGtfANzRU-Uo5uA5mE1zMMGYLGE-XHLTQbPfKLF7nchMO6j6IrL-MnX4SnCiqpSl7hcyKl5QuTnZrxvw", + "n": "wIdUsrqV5OKZU_4aqtPFjRzfmQC6ojuOlgoM7PdH5972P7XLUYv36oq59zJQQ3b-SryUeqTDk4Dk7_FHcY-H7mVshaGGKvtd5EBOvkcY-Omjg-cE4x10qRRor_Sdl1yy-blXvJRfSoxjWHfinmXYf3VIKg-DugeXpa3vg4kZsGa90zdiDj5ZoPwuoSyHtp9PsAZh0yH5PeWGITejMKKQeP0C9lcldNb2TA4p2TYhxEb1wQbkNI6D1jlLrP5Qa39A1_rkA02i1Hu906DzGATGeFRK-lTQD6qO-bq90iHywfGtdFPfRtIDiReAFsi2xeLRYGOGahPFtEDebdLySMy4pQ", "e": "AQAB" }, "attributes": { "enabled": true, - "created": 1560890167, - "updated": 1560890167, + "created": 1565113758, + "updated": 1565113758, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/795788076?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f795788076?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f8a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "db9465b8ccb695f15473e0a252471539", "x-ms-return-client-request-id": "true" @@ -193,24 +238,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:36:22 GMT", + "Date": "Tue, 06 Aug 2019 17:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c14cd1ce-1599-4cec-a9f5-5fe1c5ca61ad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "486b834a-00b1-44f2-8032-d950c6e12659", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1119859545" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKey.json index b0d152b30749..8583bbce6084 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1423220187/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed0-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "16b94d3dfbafaf43aee1df7d34dc8b4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ca5368f5-3d55-4df7-8a99-f7a596f51400", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed0-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "16b94d3dfbafaf43aee1df7d34dc8b4d", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3aa6a7d7-4b6c-4a0e-82cb-530b850dca95", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5a701238-0962-43a6-915f-29a331c87d2c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1423220187/2d44889e529845a593a336c501355d21", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187\u002fa0bb0eb8d1054107b3247b7660f11022", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "gymM5Vzowjnw59PZl8x7hBWPBZRoTgOewacY3-ntVCA", - "y": "oH3S1J59OkYUghyG-qjo-RMqxx2Rh7oRA3h0uFbTUG4" + "x": "mnJ4qKKBv9Lt_TnA-PG5kfvzxbZq_jstYRxjtLY4LQQ", + "y": "1sm8j222w_BZxUISOfaBZaaqRQ3Ij5Bkj71K0Lw_e0k" }, "attributes": { "enabled": true, - "created": 1560889887, - "updated": 1560889887, + "created": 1565113457, + "updated": 1565113457, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1423220187?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed1-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4912f19db7711157637fb871f4723a78", "x-ms-return-client-request-id": "true" @@ -75,53 +118,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e327bf8c-9442-45a8-9835-2a2ddedaccf1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ab12dbfe-8b0b-4ebe-86cb-0fe2a5e34143", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1423220187", - "deletedDate": 1560889887, - "scheduledPurgeDate": 1568665887, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1423220187", + "deletedDate": 1565113457, + "scheduledPurgeDate": 1572889457, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1423220187/2d44889e529845a593a336c501355d21", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187\u002fa0bb0eb8d1054107b3247b7660f11022", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "gymM5Vzowjnw59PZl8x7hBWPBZRoTgOewacY3-ntVCA", - "y": "oH3S1J59OkYUghyG-qjo-RMqxx2Rh7oRA3h0uFbTUG4" + "x": "mnJ4qKKBv9Lt_TnA-PG5kfvzxbZq_jstYRxjtLY4LQQ", + "y": "1sm8j222w_BZxUISOfaBZaaqRQ3Ij5Bkj71K0Lw_e0k" }, "attributes": { "enabled": true, - "created": 1560889887, - "updated": 1560889887, + "created": 1565113457, + "updated": 1565113457, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1423220187/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1423220187\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "71697bbfbe1dbc35683e6ceddedd0408", "x-ms-return-client-request-id": "true" @@ -131,18 +175,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1f291dbf-c5e6-446e-93b2-5f0fb37d3e49", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "23585fb5-e8ee-4818-821b-cb3c9c153dc7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -153,15 +197,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1423220187?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1423220187?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed7-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "92b62c758bcf08d66d6aa78f9db9d4b7", "x-ms-return-client-request-id": "true" @@ -170,24 +215,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:31:42 GMT", + "Date": "Tue, 06 Aug 2019 17:44:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79d0a30f-66ef-4c9b-8f3b-2634e42003d6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5e90dee2-cc75-4356-afe0-d891c9b8fe83", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "329028074" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyAsync.json index 94f86ca8f1c0..479d017e93e7 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1519836857/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f8c-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "7805521a897e8b36687f135f2b9b64df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "335eee2b-05af-495e-836e-57c5a46b5ff1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f8c-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7805521a897e8b36687f135f2b9b64df", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1693d21a-ee12-44c6-834e-eeb3f17496f2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "35e44519-3c06-4cec-b38a-e44a10c36720", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1519836857/93f70369879f447b92cd346f6a189b1e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857\u002f24b96ff9fe3f42e88804714aafa50c36", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "MfqWGs80JuWLSb0fajw0zgDxg0RRjvmTxaesABQprN0", - "y": "6erfpjohTBiR9w7sSwEqtpKMf9rLNGjKlShOqTTw5P0" + "x": "km_53ZI_KIeUbPd0YBxPJ50gOhsBTfhsJzfMFdsUk0g", + "y": "5YS1IDD7qb7mLyIkE4wxxdxHE3bh5FYpMnltSRf_RUo" }, "attributes": { "enabled": true, - "created": 1560890183, - "updated": 1560890183, + "created": 1565113774, + "updated": 1565113774, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1519836857?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f8d-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9122806f74f25336df952568d5c84277", "x-ms-return-client-request-id": "true" @@ -75,53 +118,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "14aae56e-28b3-40f3-b062-23b162eae604", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3d1f04aa-58ad-461b-8d4f-4916989005f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1519836857", - "deletedDate": 1560890183, - "scheduledPurgeDate": 1568666183, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1519836857", + "deletedDate": 1565113774, + "scheduledPurgeDate": 1572889774, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1519836857/93f70369879f447b92cd346f6a189b1e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857\u002f24b96ff9fe3f42e88804714aafa50c36", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "MfqWGs80JuWLSb0fajw0zgDxg0RRjvmTxaesABQprN0", - "y": "6erfpjohTBiR9w7sSwEqtpKMf9rLNGjKlShOqTTw5P0" + "x": "km_53ZI_KIeUbPd0YBxPJ50gOhsBTfhsJzfMFdsUk0g", + "y": "5YS1IDD7qb7mLyIkE4wxxdxHE3bh5FYpMnltSRf_RUo" }, "attributes": { "enabled": true, - "created": 1560890183, - "updated": 1560890183, + "created": 1565113774, + "updated": 1565113774, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1519836857/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1519836857\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f8e-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2e5939c444260cc0fb8248dba0d5a82e", "x-ms-return-client-request-id": "true" @@ -131,18 +175,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "23c6def8-8fd8-4ea0-ae9d-337fd5eba83b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0a46ff39-af15-4217-b708-d8f7dec0f26e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -153,15 +197,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1519836857?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1519836857?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f93-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6dfc8d003df5810571de7e8d23447ee7", "x-ms-return-client-request-id": "true" @@ -170,24 +215,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:36:37 GMT", + "Date": "Tue, 06 Aug 2019 17:49:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c784e6e1-f02c-4706-bd74-dc5e85b51320", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "52b3f142-6621-4f73-868d-1505e4f4a58a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1505379599" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExisting.json index 44394290eb83..2280fb7cc1d5 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1227833838?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1227833838?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed9-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "4d56db7cd8408e922a4b0fb617a9a5da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "697950f5-8add-4f9d-9140-be21a2ebb807", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1227833838?api-version=7.0", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ed9-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4d56db7cd8408e922a4b0fb617a9a5da", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2606b521-f2ad-4919-9362-c862bb6efbd0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e0b8e01a-1c82-459e-9343-66b38b39ba92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1646191600" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExistingAsync.json index 11e456594352..5aa6d2faf306 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/DeleteKeyNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1200907550?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1200907550?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f95-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "8ac4c37ca3c4ba63b6e9e4223127ca6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b49b219b-bcb7-4518-b78b-fb7df178c5a5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1200907550?api-version=7.0", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f95-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8ac4c37ca3c4ba63b6e9e4223127ca6c", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5badb071-7d5c-481e-b1e8-d73e610ab98d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0b4c0599-7186-4b49-95f7-69960877f2f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1073516992" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKey.json index f8376401549d..1614a409988d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/637125876/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eda-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "7cbd6373d3f5b0c1f03510a54552f1d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8fdaf0c8-362c-4bf5-a58f-20426f884ff2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eda-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7cbd6373d3f5b0c1f03510a54552f1d7", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8dd3d56d-fa56-4ee4-a6ac-35b5217a1f5b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8c67153b-3b7f-4cd1-8be4-d8a4cf972e7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/637125876/5316ff5731c74b9098b2d05070e58a21", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876\u002f43c2173513654985bc4ed6eb3022b10e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Ll_5251JLNX-lfmUS7cRy71rpWgHOm3Wx51qu7rF0i0", - "y": "KpXqT0c4B_55raloTXdcaHrtPjs7IhyX5_ZF-iYgFjo" + "x": "5yJri0BOVu1WGbjjIKf_U2lAefg3mybp2Q63NRth9F4", + "y": "fkiTcqqwbPG6tpPC5EgCADW20hpycW1Xe4gGvBh02mQ" }, "attributes": { "enabled": true, - "created": 1560889903, - "updated": 1560889903, + "created": 1565113473, + "updated": 1565113473, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/637125876?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06edb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "179388ffd6bc5b328cc14f0de6ceca8c", "x-ms-return-client-request-id": "true" @@ -75,53 +118,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:43 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ffa253b1-9da2-431b-be48-49dfe7aacf15", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8e581be7-2d07-4792-9b97-1b61d30cb098", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/637125876", - "deletedDate": 1560889903, - "scheduledPurgeDate": 1568665903, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f637125876", + "deletedDate": 1565113473, + "scheduledPurgeDate": 1572889473, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/637125876/5316ff5731c74b9098b2d05070e58a21", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876\u002f43c2173513654985bc4ed6eb3022b10e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Ll_5251JLNX-lfmUS7cRy71rpWgHOm3Wx51qu7rF0i0", - "y": "KpXqT0c4B_55raloTXdcaHrtPjs7IhyX5_ZF-iYgFjo" + "x": "5yJri0BOVu1WGbjjIKf_U2lAefg3mybp2Q63NRth9F4", + "y": "fkiTcqqwbPG6tpPC5EgCADW20hpycW1Xe4gGvBh02mQ" }, "attributes": { "enabled": true, - "created": 1560889903, - "updated": 1560889903, + "created": 1565113473, + "updated": 1565113473, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/637125876?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f637125876?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06edf-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ba9594fbdf8de5b75b03a724c6a18aa0", "x-ms-return-client-request-id": "true" @@ -131,53 +175,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df389c07-040a-41c7-987e-98e69da16f83", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c3fcf00b-0c62-4f57-8507-da9b282a2281", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/637125876", - "deletedDate": 1560889903, - "scheduledPurgeDate": 1568665903, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f637125876", + "deletedDate": 1565113473, + "scheduledPurgeDate": 1572889473, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/637125876/5316ff5731c74b9098b2d05070e58a21", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f637125876\u002f43c2173513654985bc4ed6eb3022b10e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Ll_5251JLNX-lfmUS7cRy71rpWgHOm3Wx51qu7rF0i0", - "y": "KpXqT0c4B_55raloTXdcaHrtPjs7IhyX5_ZF-iYgFjo" + "x": "5yJri0BOVu1WGbjjIKf_U2lAefg3mybp2Q63NRth9F4", + "y": "fkiTcqqwbPG6tpPC5EgCADW20hpycW1Xe4gGvBh02mQ" }, "attributes": { "enabled": true, - "created": 1560889903, - "updated": 1560889903, + "created": 1565113473, + "updated": 1565113473, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/637125876?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f637125876?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee1-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ef38efd10f1e8a95cc0055af702c8311", "x-ms-return-client-request-id": "true" @@ -186,24 +231,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:31:53 GMT", + "Date": "Tue, 06 Aug 2019 17:44:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "80860082-d51f-4d8a-8775-41d1cb51bebf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1ba224c6-f766-4302-b8b7-7a9b12ef09d9", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1880848523" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyAsync.json index 1c18bbdbf260..ab52125dec17 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/758113425/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f96-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "5b5e14f7812c13784d5f814f10b00ff2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bd92d1fd-3814-4c18-bc23-76fcbd061ddc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f96-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5b5e14f7812c13784d5f814f10b00ff2", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d1a9ceee-72a9-4e01-8d02-96b31ba5c967", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0b084c76-0f2f-42bf-b019-249089329877", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/758113425/6f1f14dabc654c5c967b48a2d9ddd88f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425\u002fe1dcfd08e1964497bba0491f24764c7c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "nzf6X53I_SBmQSwbk4RRaOhKpYd7qj6Td60x0fBzebU", - "y": "_WmAScaUeip5gvpN-NBPHfMkwvBta7bjQkqfrEARuqA" + "x": "59cCMq3VZxPobt3sQegqUpDOHFsviBQvMPG0HJE_lFs", + "y": "rzPNblZooLgqZgiefCq1gYID8rvazwB5kwx0Qc2AdMM" }, "attributes": { "enabled": true, - "created": 1560890199, - "updated": 1560890199, + "created": 1565113790, + "updated": 1565113790, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/758113425?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f97-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5d5bad06971fcde89e3ac3dade751c25", "x-ms-return-client-request-id": "true" @@ -75,55 +118,56 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:38 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:49:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "47b1bff6-cf00-4ec5-b7c8-58ee104b0c84", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "119133c9-d645-4430-84b7-b0c7daa3c1a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/758113425", - "deletedDate": 1560890199, - "scheduledPurgeDate": 1568666199, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f758113425", + "deletedDate": 1565113790, + "scheduledPurgeDate": 1572889790, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/758113425/6f1f14dabc654c5c967b48a2d9ddd88f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425\u002fe1dcfd08e1964497bba0491f24764c7c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "nzf6X53I_SBmQSwbk4RRaOhKpYd7qj6Td60x0fBzebU", - "y": "_WmAScaUeip5gvpN-NBPHfMkwvBta7bjQkqfrEARuqA" + "x": "59cCMq3VZxPobt3sQegqUpDOHFsviBQvMPG0HJE_lFs", + "y": "rzPNblZooLgqZgiefCq1gYID8rvazwB5kwx0Qc2AdMM" }, "attributes": { "enabled": true, - "created": 1560890199, - "updated": 1560890199, + "created": 1565113790, + "updated": 1565113790, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/758113425?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f758113425?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f9d-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d39addceb8ed0288ede7998141567d21", + "x-ms-client-request-id": "554fd8f2c17ee1297ee21f548e997687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -131,79 +175,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "98513b53-2bc3-4320-ba3e-0bb9599a9456", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f06e443d-f56e-4b6b-aba1-ac80e831dc7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/758113425", - "deletedDate": 1560890199, - "scheduledPurgeDate": 1568666199, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f758113425", + "deletedDate": 1565113790, + "scheduledPurgeDate": 1572889790, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/758113425/6f1f14dabc654c5c967b48a2d9ddd88f", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f758113425\u002fe1dcfd08e1964497bba0491f24764c7c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "nzf6X53I_SBmQSwbk4RRaOhKpYd7qj6Td60x0fBzebU", - "y": "_WmAScaUeip5gvpN-NBPHfMkwvBta7bjQkqfrEARuqA" + "x": "59cCMq3VZxPobt3sQegqUpDOHFsviBQvMPG0HJE_lFs", + "y": "rzPNblZooLgqZgiefCq1gYID8rvazwB5kwx0Qc2AdMM" }, "attributes": { "enabled": true, - "created": 1560890199, - "updated": 1560890199, + "created": 1565113790, + "updated": 1565113790, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/758113425?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f758113425?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f9f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "044df3edcb70e9f7df1c86c7c85ca769", + "x-ms-client-request-id": "91f10900824a0ce7b4b8540b99337353", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:36:54 GMT", + "Date": "Tue, 06 Aug 2019 17:50:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "10a47110-c8cf-45d6-86d0-ff90c881887e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c465a075-0333-4389-978f-5580609742af", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1761651734" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExisting.json index ed49e713913c..7081a73b917e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1817458138?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1817458138?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee3-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "16fee0f44f8479f33a273ed2a66e30e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cbb23ef3-5035-4b81-a5d2-b147581bcfdc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1817458138?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee3-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "16fee0f44f8479f33a273ed2a66e30e3", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9bdfac3f-caa6-4246-a77d-f6174d6f7dcb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "339968a6-4d4b-4fab-a388-395deb6f30bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "383049934" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExistingAsync.json index 7361c37f483c..4ff9990cfc46 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeyNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1592973133?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1592973133?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa1-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "43ce22c067789c5026d0db7b8ae79eb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c3141b7e-29ae-4b9a-9363-8dc7a2e136e5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1592973133?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa1-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "43ce22c067789c5026d0db7b8ae79eb1", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fb5f95d1-927a-436e-a1b0-5597e20ea2ac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9e1c014b-6e67-4a0a-a328-9f7b97c57950", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1066961529" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeys.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeys.json index 143ab946a92f..6e532c3a34e3 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeys.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeys.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/20980359740/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee4-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "184b5e26818abe160142c8ca71551c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "94037e0b-fd2c-40e3-811d-be4bff5d8f0a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "184b5e26818abe160142c8ca71551c3e", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9bfdeafc-1ada-4d2f-b6c2-5217bca7651c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4c8af637-a7ab-4f91-99c1-b056f4c8d24b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359740/1246c5a378d1454b822aaf9cbc142e57", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740\u002fc28fa2f13d67480286ef6e81aed90002", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ej0WU0cXhcwgdUrmtjUHf9JMf8GiAUCakwTMEFWQryY", - "y": "PL4xnjeV14dQZQcY9Ey96fQBbKTpq_EfBVXBNLVD9u8" + "x": "OPxciZa9AK0aBLysd8vfOKi43ek1ir5HzvjgYsk5M6s", + "y": "NAx4qUBFHmTZchzslF_yy2a0RBWhv_H0yBKfdmucQ7c" }, "attributes": { "enabled": true, - "created": 1560889914, - "updated": 1560889914, + "created": 1565113484, + "updated": 1565113484, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/20980359740?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e774367b29ebc858f8e4b58ef8d89d40", "x-ms-return-client-request-id": "true" @@ -75,54 +118,55 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "508", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fcc5ead5-53c7-4800-8284-68fb4ce1a3b3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e7a352c2-c93e-4874-8021-b6a0e4566523", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359740", - "deletedDate": 1560889914, - "scheduledPurgeDate": 1568665914, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359740", + "deletedDate": 1565113484, + "scheduledPurgeDate": 1572889484, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359740/1246c5a378d1454b822aaf9cbc142e57", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740\u002fc28fa2f13d67480286ef6e81aed90002", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ej0WU0cXhcwgdUrmtjUHf9JMf8GiAUCakwTMEFWQryY", - "y": "PL4xnjeV14dQZQcY9Ey96fQBbKTpq_EfBVXBNLVD9u8" + "x": "OPxciZa9AK0aBLysd8vfOKi43ek1ir5HzvjgYsk5M6s", + "y": "NAx4qUBFHmTZchzslF_yy2a0RBWhv_H0yBKfdmucQ7c" }, "attributes": { "enabled": true, - "created": 1560889914, - "updated": 1560889914, + "created": 1565113484, + "updated": 1565113484, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/20980359741/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359741\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "844ad951cf65cf08be0d823b6d5e1fc9", "x-ms-return-client-request-id": "true" @@ -134,50 +178,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "05eeb96a-9d16-4066-81ed-80808cb44181", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e0474bc7-685f-4dc1-a814-d496836ab062", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359741/495fd2958e204587a32bf8728d2910f1", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359741\u002fe7aaf7ad7f874c20b346f9b03e0471f9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "3lGTiV26jXl4W0W2xveuUV5Arc_qlbKz0TAA6fV7ag0", - "y": "Yn-6IhL6lccKgX3-mx6xuWOnGVNgE-eJ_VBD-vTeLho" + "x": "klD-rDEV-zUVOX11AzicV-TGlX2ylQkdx3zIeuvCpqM", + "y": "8Fim3KN4UOJGVJ3qUO658Qv_Ee0bwrWipRhCPNea5VA" }, "attributes": { "enabled": true, - "created": 1560889914, - "updated": 1560889914, + "created": 1565113485, + "updated": 1565113485, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/20980359741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359741?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ee7-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d1c8f7174e20fc1b058220a6cb88c528", "x-ms-return-client-request-id": "true" @@ -187,53 +232,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "508", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:31:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:44:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4f86657a-d0c0-41cf-a470-2cdd01c8d2e4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4478947d-cc20-420d-99d2-fcc2710f4094", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359741", - "deletedDate": 1560889914, - "scheduledPurgeDate": 1568665914, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359741", + "deletedDate": 1565113485, + "scheduledPurgeDate": 1572889485, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359741/495fd2958e204587a32bf8728d2910f1", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359741\u002fe7aaf7ad7f874c20b346f9b03e0471f9", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "3lGTiV26jXl4W0W2xveuUV5Arc_qlbKz0TAA6fV7ag0", - "y": "Yn-6IhL6lccKgX3-mx6xuWOnGVNgE-eJ_VBD-vTeLho" + "x": "klD-rDEV-zUVOX11AzicV-TGlX2ylQkdx3zIeuvCpqM", + "y": "8Fim3KN4UOJGVJ3qUO658Qv_Ee0bwrWipRhCPNea5VA" }, "attributes": { "enabled": true, - "created": 1560889914, - "updated": 1560889914, + "created": 1565113485, + "updated": 1565113485, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eed-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "28bc97f82581822542bf7c6eae026929", "x-ms-return-client-request-id": "true" @@ -242,1494 +288,148 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4083", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "50253e04-a3b3-46e9-abfa-a23ab0e182ea", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1007513984", - "deletedDate": 1560379203, - "scheduledPurgeDate": 1568155203, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1007513984", - "attributes": { - "enabled": true, - "created": 1560379174, - "updated": 1560379174, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1033722629", - "deletedDate": 1560374970, - "scheduledPurgeDate": 1568150970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1033722629", - "attributes": { - "enabled": true, - "created": 1560374969, - "updated": 1560374969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1101611646", - "deletedDate": 1560373933, - "scheduledPurgeDate": 1568149933, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1101611646", - "attributes": { - "enabled": true, - "created": 1560373932, - "updated": 1560373932, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1161171922", - "deletedDate": 1560378153, - "scheduledPurgeDate": 1568154153, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1161171922", - "attributes": { - "enabled": true, - "created": 1560378153, - "updated": 1560378153, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1202171351", - "deletedDate": 1560371877, - "scheduledPurgeDate": 1568147877, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1202171351", - "attributes": { - "enabled": true, - "created": 1560371877, - "updated": 1560371877, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1221764014", - "deletedDate": 1560365000, - "scheduledPurgeDate": 1568141000, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1221764014", - "attributes": { - "enabled": true, - "created": 1560364975, - "updated": 1560364975, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1225285598", - "deletedDate": 1560364888, - "scheduledPurgeDate": 1568140888, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1225285598", - "attributes": { - "enabled": true, - "created": 1560364888, - "updated": 1560364888, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1258178014", - "deletedDate": 1560372035, - "scheduledPurgeDate": 1568148035, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1258178014", - "attributes": { - "enabled": true, - "created": 1560372035, - "updated": 1560372035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/12946988", - "deletedDate": 1560377998, - "scheduledPurgeDate": 1568153998, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/12946988", - "attributes": { - "enabled": true, - "created": 1560377998, - "updated": 1560377998, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1298735030", - "deletedDate": 1560364510, - "scheduledPurgeDate": 1568140510, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1298735030", - "attributes": { - "enabled": true, - "created": 1560364471, - "updated": 1560364471, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1299108697", - "deletedDate": 1560375250, - "scheduledPurgeDate": 1568151250, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1299108697", - "attributes": { - "enabled": true, - "created": 1560375088, - "updated": 1560375088, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1334913095", - "deletedDate": 1560378289, - "scheduledPurgeDate": 1568154289, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1334913095", - "attributes": { - "enabled": false, - "created": 1560378289, - "updated": 1560378289, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE16TTBPVEV6TURrMUx6azBNVFU1TkVORVF6azFSalF4T1VZNU1ESkZNalU1UlVaQ05UbEdRamcxSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE16TTBPVEV6TURrMUx6azBNVFU1TkVORVF6azFSalF4T1VZNU1ESkZNalU1UlVaQ05UbEdRamcxSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "33dad91f09a8b062d1a4b01ae323afc3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3400", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:11 GMT", + "Content-Length": "1473", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "85e6c831-fac3-489a-b8b4-bef63498e5b1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "23983fec-2a1f-4422-b2ee-f399a65b97eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1350112317", - "deletedDate": 1560378061, - "scheduledPurgeDate": 1568154061, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1350112317", - "attributes": { - "enabled": true, - "created": 1560378061, - "updated": 1560378061, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1374969203", - "deletedDate": 1560373922, - "scheduledPurgeDate": 1568149922, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1374969203", - "attributes": { - "enabled": true, - "created": 1560373922, - "updated": 1560373922, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/139860560", - "deletedDate": 1560364511, - "scheduledPurgeDate": 1568140511, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/139860560", - "attributes": { - "enabled": true, - "created": 1560364472, - "updated": 1560364472, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1432837954", - "deletedDate": 1560378169, - "scheduledPurgeDate": 1568154169, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1432837954", - "attributes": { - "enabled": true, - "created": 1560378169, - "updated": 1560378169, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1437462188", - "deletedDate": 1560376089, - "scheduledPurgeDate": 1568152089, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1437462188", - "attributes": { - "enabled": false, - "created": 1560376089, - "updated": 1560376089, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1449289597", - "deletedDate": 1560373541, - "scheduledPurgeDate": 1568149541, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1449289597", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359740", + "deletedDate": 1565113484, + "scheduledPurgeDate": 1572889484, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359740", "attributes": { "enabled": true, - "created": 1560373541, - "updated": 1560373541, + "created": 1565113484, + "updated": 1565113484, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1493747779", - "deletedDate": 1560379429, - "scheduledPurgeDate": 1568155429, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1493747779", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359741", + "deletedDate": 1565113485, + "scheduledPurgeDate": 1572889485, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f20980359741", "attributes": { "enabled": true, - "created": 1560379407, - "updated": 1560379407, + "created": 1565113485, + "updated": 1565113485, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1499316617", - "deletedDate": 1560374552, - "scheduledPurgeDate": 1568150552, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1499316617", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002fCloudECKey-f4230c5f-348f-4f2d-8aa0-80f4d3ac727d", + "deletedDate": 1565083517, + "scheduledPurgeDate": 1572859517, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002fCloudECKey-f4230c5f-348f-4f2d-8aa0-80f4d3ac727d", "attributes": { "enabled": true, - "created": 1560374509, - "updated": 1560374509, + "exp": 1596705912685, + "created": 1565083512, + "updated": 1565083512, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1528358383", - "deletedDate": 1560372035, - "scheduledPurgeDate": 1568148035, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1528358383", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002fCloudRsaKey-f989e30d-d2db-4f87-bd23-ba28ca528ae4", + "deletedDate": 1565083516, + "scheduledPurgeDate": 1572859516, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002fCloudRsaKey-f989e30d-d2db-4f87-bd23-ba28ca528ae4", "attributes": { "enabled": true, - "created": 1560372035, - "updated": 1560372035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1539864055", - "deletedDate": 1560376400, - "scheduledPurgeDate": 1568152400, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1539864055", - "attributes": { - "enabled": false, - "created": 1560376400, - "updated": 1560376400, + "exp": 1596705913280, + "created": 1565083516, + "updated": 1565083516, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" + "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359740?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef0-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7fc35998d4397a49cc130ac6fa468e2b", + "x-ms-client-request-id": "4fd4b88daacaefd7350b56dc750b9f1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4104", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:12 GMT", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b82239f-dd29-49bc-8c29-2138ab4d1ec6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ac73b1e4-4715-4aa4-9d24-f0c9c1f5dc84", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1556734246", - "deletedDate": 1560378169, - "scheduledPurgeDate": 1568154169, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1556734246", - "attributes": { - "enabled": true, - "created": 1560378169, - "updated": 1560378169, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1568604186", - "deletedDate": 1560365078, - "scheduledPurgeDate": 1568141078, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1568604186", - "attributes": { - "enabled": true, - "created": 1560365077, - "updated": 1560365077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1584948566", - "deletedDate": 1560377966, - "scheduledPurgeDate": 1568153966, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1584948566", - "attributes": { - "enabled": true, - "created": 1560377966, - "updated": 1560377966, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1595598628", - "deletedDate": 1560374292, - "scheduledPurgeDate": 1568150292, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1595598628", - "attributes": { - "enabled": true, - "created": 1560374292, - "updated": 1560374292, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1597935969", - "deletedDate": 1560377165, - "scheduledPurgeDate": 1568153165, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1597935969", - "attributes": { - "enabled": false, - "created": 1560377123, - "updated": 1560377123, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1608304173", - "deletedDate": 1560374308, - "scheduledPurgeDate": 1568150308, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1608304173", - "attributes": { - "enabled": true, - "created": 1560374308, - "updated": 1560374308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1608698807", - "deletedDate": 1560363628, - "scheduledPurgeDate": 1568139628, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1608698807", - "attributes": { - "enabled": true, - "created": 1560363590, - "updated": 1560363590, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1610471226", - "deletedDate": 1560378030, - "scheduledPurgeDate": 1568154030, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1610471226", - "attributes": { - "enabled": true, - "created": 1560378029, - "updated": 1560378029, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1618368194", - "deletedDate": 1560375537, - "scheduledPurgeDate": 1568151537, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1618368194", - "attributes": { - "enabled": true, - "created": 1560375537, - "updated": 1560375537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1645695659", - "deletedDate": 1560373510, - "scheduledPurgeDate": 1568149510, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1645695659", - "attributes": { - "enabled": true, - "created": 1560373510, - "updated": 1560373510, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1724486190", - "deletedDate": 1560375518, - "scheduledPurgeDate": 1568151518, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1724486190", - "attributes": { - "enabled": true, - "created": 1560375504, - "updated": 1560375504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1773139216", - "deletedDate": 1560377756, - "scheduledPurgeDate": 1568153756, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1773139216", - "attributes": { - "enabled": true, - "exp": 1560377755, - "created": 1560377755, - "updated": 1560377756, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE56Y3pNVE01TWpFMkwwWXdRell6TlVNeU56RXlNVFEzTnpZNE1FUkRRek5GTXpVM016TkJNMFZHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE56Y3pNVE01TWpFMkwwWXdRell6TlVNeU56RXlNVFEzTnpZNE1FUkRRek5GTXpVM016TkJNMFZHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f20980359741?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef1-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4fd4b88daacaefd7350b56dc750b9f1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3768", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd51855a-596c-439b-aa0a-afc415e392de", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1784794548", - "deletedDate": 1560380486, - "scheduledPurgeDate": 1568156486, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1784794548", - "attributes": { - "enabled": true, - "created": 1560380486, - "updated": 1560380486, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/180759389", - "deletedDate": 1560377423, - "scheduledPurgeDate": 1568153423, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/180759389", - "attributes": { - "enabled": true, - "exp": 1560377723264, - "created": 1560377423, - "updated": 1560377423, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1830553916", - "deletedDate": 1560363375, - "scheduledPurgeDate": 1568139375, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1830553916", - "attributes": { - "enabled": true, - "created": 1560363374, - "updated": 1560363374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1861282159", - "deletedDate": 1560378216, - "scheduledPurgeDate": 1568154216, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1861282159", - "attributes": { - "enabled": true, - "created": 1560378216, - "updated": 1560378216, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1895620033", - "deletedDate": 1560377972, - "scheduledPurgeDate": 1568153972, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1895620033", - "attributes": { - "enabled": true, - "created": 1560377972, - "updated": 1560377972, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1897393706", - "deletedDate": 1560377601, - "scheduledPurgeDate": 1568153601, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1897393706", - "attributes": { - "enabled": true, - "exp": 1560377900831, - "created": 1560377600, - "updated": 1560377600, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1909072118", - "deletedDate": 1560375518, - "scheduledPurgeDate": 1568151518, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1909072118", - "attributes": { - "enabled": true, - "created": 1560375441, - "updated": 1560375441, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1924505550", - "deletedDate": 1560371167, - "scheduledPurgeDate": 1568147167, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1924505550", - "attributes": { - "enabled": true, - "created": 1560371166, - "updated": 1560371166, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1935071491", - "deletedDate": 1560365077, - "scheduledPurgeDate": 1568141077, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1935071491", - "attributes": { - "enabled": true, - "created": 1560365077, - "updated": 1560365077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1992723823", - "deletedDate": 1560378109, - "scheduledPurgeDate": 1568154109, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1992723823", - "attributes": { - "enabled": true, - "exp": 1560378109, - "created": 1560378109, - "updated": 1560378109, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1993066193", - "deletedDate": 1560375719, - "scheduledPurgeDate": 1568151719, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1993066193", - "attributes": { - "enabled": true, - "created": 1560375719, - "updated": 1560375719, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh5TURVM016RXlPRGMySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh5TURVM016RXlPRGMySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "54d6b810e93e4bef8f5f6794fe9bb58b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4062", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ade9878-d9aa-49bb-aad5-9c5e33fcffa2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2057312876", - "deletedDate": 1560378864, - "scheduledPurgeDate": 1568154864, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2057312876", - "attributes": { - "enabled": true, - "created": 1560378694, - "updated": 1560378694, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2062687594", - "deletedDate": 1560375970, - "scheduledPurgeDate": 1568151970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2062687594", - "attributes": { - "enabled": true, - "created": 1560375907, - "updated": 1560375907, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359740", - "deletedDate": 1560889914, - "scheduledPurgeDate": 1568665914, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359740", - "attributes": { - "enabled": true, - "created": 1560889914, - "updated": 1560889914, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359741", - "deletedDate": 1560889914, - "scheduledPurgeDate": 1568665914, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/20980359741", - "attributes": { - "enabled": true, - "created": 1560889914, - "updated": 1560889914, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/21289878", - "deletedDate": 1560377998, - "scheduledPurgeDate": 1568153998, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/21289878", - "attributes": { - "enabled": true, - "created": 1560377998, - "updated": 1560377998, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/215983568", - "deletedDate": 1560373969, - "scheduledPurgeDate": 1568149969, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/215983568", - "attributes": { - "enabled": true, - "created": 1560373969, - "updated": 1560373969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/241663833", - "deletedDate": 1560363624, - "scheduledPurgeDate": 1568139624, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/241663833", - "attributes": { - "enabled": true, - "created": 1560363582, - "updated": 1560363582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/244695609", - "deletedDate": 1560378077, - "scheduledPurgeDate": 1568154077, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/244695609", - "attributes": { - "enabled": true, - "created": 1560378077, - "updated": 1560378077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/26110913", - "deletedDate": 1560374270, - "scheduledPurgeDate": 1568150270, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/26110913", - "attributes": { - "enabled": true, - "created": 1560374270, - "updated": 1560374270, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/27973667", - "deletedDate": 1560363474, - "scheduledPurgeDate": 1568139474, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/27973667", - "attributes": { - "enabled": true, - "created": 1560363474, - "updated": 1560363474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/280358434", - "deletedDate": 1560373002, - "scheduledPurgeDate": 1568149002, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/280358434", - "attributes": { - "enabled": true, - "created": 1560373002, - "updated": 1560373002, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/283986871", - "deletedDate": 1560379648, - "scheduledPurgeDate": 1568155648, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/283986871", - "attributes": { - "enabled": true, - "created": 1560379648, - "updated": 1560379648, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4eU9ETTVPRFk0TnpFdk9EVXlSakJDT0RFNVFrRTNOREkzUmtFd01qYzNNREU0TXpVd05FVXpNRVFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4eU9ETTVPRFk0TnpFdk9EVXlSakJDT0RFNVFrRTNOREkzUmtFd01qYzNNREU0TXpVd05FVXpNRVFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2a8c85155f4feef982d44a2d7e6c05c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3411", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "627ea2de-a6ea-4c19-aa03-e76b5128427e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/319106794", - "deletedDate": 1560363847, - "scheduledPurgeDate": 1568139847, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/319106794", - "attributes": { - "enabled": true, - "created": 1560363847, - "updated": 1560363847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/357892868", - "deletedDate": 1560377297, - "scheduledPurgeDate": 1568153297, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/357892868", - "attributes": { - "enabled": true, - "exp": 1560377597347, - "created": 1560377297, - "updated": 1560377297, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/365175570", - "deletedDate": 1560365000, - "scheduledPurgeDate": 1568141000, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/365175570", - "attributes": { - "enabled": true, - "created": 1560364976, - "updated": 1560364976, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/437156052", - "deletedDate": 1560380323, - "scheduledPurgeDate": 1568156323, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/437156052", - "attributes": { - "enabled": true, - "created": 1560380323, - "updated": 1560380323, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/490679838", - "deletedDate": 1560373953, - "scheduledPurgeDate": 1568149953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/490679838", - "attributes": { - "enabled": true, - "created": 1560373953, - "updated": 1560373953, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/521919761", - "deletedDate": 1560378045, - "scheduledPurgeDate": 1568154045, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/521919761", - "attributes": { - "enabled": true, - "created": 1560378045, - "updated": 1560378045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/562530938", - "deletedDate": 1560378420, - "scheduledPurgeDate": 1568154420, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/562530938", - "attributes": { - "enabled": true, - "created": 1560378420, - "updated": 1560378420, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/565039940", - "deletedDate": 1560374276, - "scheduledPurgeDate": 1568150276, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/565039940", - "attributes": { - "enabled": true, - "created": 1560374276, - "updated": 1560374276, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/577460393", - "deletedDate": 1560378305, - "scheduledPurgeDate": 1568154305, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/577460393", - "attributes": { - "enabled": true, - "exp": 1560378305, - "created": 1560378305, - "updated": 1560378305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/590522683", - "deletedDate": 1560378515, - "scheduledPurgeDate": 1568154515, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/590522683", - "attributes": { - "enabled": true, - "created": 1560378515, - "updated": 1560378515, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeUlXdGxlUzgxT1RNeU1UazJNeUV3TURBd01qZ2hPVGs1T1MweE1pMHpNVlF5TXpvMU9UbzFPUzQ1T1RrNU9UazVXaUUtIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeUlXdGxlUzgxT1RNeU1UazJNeUV3TURBd01qZ2hPVGs1T1MweE1pMHpNVlF5TXpvMU9UbzFPUzQ1T1RrNU9UazVXaUUtIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "41b6ec74396fa3ecc888c06a4243f099", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4050", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "299ad1cc-e9e9-4b74-bc37-cd33157741fd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/59321963", - "deletedDate": 1560378247, - "scheduledPurgeDate": 1568154247, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/59321963", - "attributes": { - "enabled": true, - "created": 1560378247, - "updated": 1560378247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/619915962", - "deletedDate": 1560378093, - "scheduledPurgeDate": 1568154093, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/619915962", - "attributes": { - "enabled": false, - "created": 1560378093, - "updated": 1560378093, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/624131602", - "deletedDate": 1560379208, - "scheduledPurgeDate": 1568155208, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/624131602", - "attributes": { - "enabled": true, - "created": 1560379176, - "updated": 1560379176, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6529598", - "deletedDate": 1560378273, - "scheduledPurgeDate": 1568154273, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6529598", - "attributes": { - "enabled": true, - "created": 1560378273, - "updated": 1560378273, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/699277896", - "deletedDate": 1560378262, - "scheduledPurgeDate": 1568154262, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/699277896", - "attributes": { - "enabled": true, - "created": 1560378262, - "updated": 1560378262, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/719950631", - "deletedDate": 1560379429, - "scheduledPurgeDate": 1568155429, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/719950631", - "attributes": { - "enabled": true, - "created": 1560379407, - "updated": 1560379407, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/721281196", - "deletedDate": 1560363953, - "scheduledPurgeDate": 1568139953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/721281196", - "attributes": { - "enabled": true, - "created": 1560363908, - "updated": 1560363908, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/723978838", - "deletedDate": 1560378890, - "scheduledPurgeDate": 1568154890, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/723978838", - "attributes": { - "enabled": true, - "created": 1560378707, - "updated": 1560378707, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/738039742", - "deletedDate": 1560363374, - "scheduledPurgeDate": 1568139374, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/738039742", - "attributes": { - "enabled": true, - "created": 1560363374, - "updated": 1560363374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/783977228", - "deletedDate": 1560374970, - "scheduledPurgeDate": 1568150970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/783977228", - "attributes": { - "enabled": true, - "created": 1560374969, - "updated": 1560374969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/79085616", - "deletedDate": 1560380730, - "scheduledPurgeDate": 1568156730, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/79085616", - "attributes": { - "enabled": true, - "created": 1560380730, - "updated": 1560380730, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/809369582", - "deletedDate": 1560378014, - "scheduledPurgeDate": 1568154014, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/809369582", - "attributes": { - "enabled": false, - "created": 1560378014, - "updated": 1560378014, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4NE1Ea3pOamsxT0RJdk16TkNRVU5CUWpBMlJERkNORFF6UkRreE9UTXdSRFEyUkRnNE5ERTVRalloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4NE1Ea3pOamsxT0RJdk16TkNRVU5CUWpBMlJERkNORFF6UkRreE9UTXdSRFEyUkRnNE5ERTVRalloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "efc6ca55747eb0cebfe8d26a9fc2cd22", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "137e2586-5511-478b-b714-4a8e3bc88478", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/825940204", - "deletedDate": 1560378185, - "scheduledPurgeDate": 1568154185, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/825940204", - "attributes": { - "enabled": false, - "created": 1560378184, - "updated": 1560378184, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/880893243", - "deletedDate": 1560363848, - "scheduledPurgeDate": 1568139848, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/880893243", - "attributes": { - "enabled": true, - "created": 1560363847, - "updated": 1560363847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/884455615", - "deletedDate": 1560371877, - "scheduledPurgeDate": 1568147877, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/884455615", - "attributes": { - "enabled": true, - "created": 1560371877, - "updated": 1560371877, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/901778190", - "deletedDate": 1560378137, - "scheduledPurgeDate": 1568154137, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/901778190", - "attributes": { - "enabled": true, - "created": 1560378137, - "updated": 1560378137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/909338541", - "deletedDate": 1560373020, - "scheduledPurgeDate": 1568149020, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/909338541", - "attributes": { - "enabled": true, - "created": 1560373020, - "updated": 1560373020, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/913233938", - "deletedDate": 1560364888, - "scheduledPurgeDate": 1568140888, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/913233938", - "attributes": { - "enabled": true, - "created": 1560364888, - "updated": 1560364888, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/91566257", - "deletedDate": 1560363475, - "scheduledPurgeDate": 1568139475, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/91566257", - "attributes": { - "enabled": true, - "created": 1560363474, - "updated": 1560363474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/919550051", - "deletedDate": 1560363953, - "scheduledPurgeDate": 1568139953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/919550051", - "attributes": { - "enabled": true, - "created": 1560363908, - "updated": 1560363908, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/94332741", - "deletedDate": 1560375250, - "scheduledPurgeDate": 1568151250, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/94332741", - "attributes": { - "enabled": true, - "created": 1560375241, - "updated": 1560375241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/967911834", - "deletedDate": 1560379648, - "scheduledPurgeDate": 1568155648, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/967911834", - "attributes": { - "enabled": true, - "created": 1560379648, - "updated": 1560379648, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TnpFd01EUTBPRGNoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TnpFd01EUTBPRGNoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "121fa65a74e5dc1c98e862c69f8eab3e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1c749087-d7be-4b7c-a230-4c9684cd2c76", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/971004487", - "deletedDate": 1560365103, - "scheduledPurgeDate": 1568141103, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/971004487", - "attributes": { - "enabled": false, - "created": 1560365103, - "updated": 1560365103, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": null - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359740?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ee86933d1aea447c6320f5e0f1957415", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ee8c735c-5730-4644-8e4d-f7c1f5b950b0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/20980359741?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "010b5be40e7e051bfcf604bbbdadec15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "830c4864-2551-4261-9cce-d39626721f2c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "56a2162d-a937-424e-a8ac-bce45bcba770", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "396019524" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeysAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeysAsync.json index b6363bd67368..fadfe9a851d7 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeysAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetDeletedKeysAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/17499599240/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa2-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "790601b9a4e32db0365e3d2f772378f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "33313d95-5b48-4fe6-a568-160da6f256b0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "790601b9a4e32db0365e3d2f772378f1", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f6ea1c44-1d43-45b7-a70f-7f23600e5d0e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "99b6ffe5-032c-480f-9bfc-a64e76b4e192", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599240/93b20107f9134cf0a4346fdc8962ed53", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240\u002fee4baa1864694f8bb53cd505d8f5c63e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "vEJpmRIVZtlVo2wjpt8N-iaD06yACbZ27xqazgGdCYE", - "y": "r7yrQuO5hM2ppBzydQpp9XlBDZneGbllM8Y2CjHDRIs" + "x": "ARsgEYbl21VGr7aaDSYhQRpVBgH_sfkSHOJ8RRL0PQA", + "y": "yKc9xEIGK6_VF4d-lpOrNXVZ5NM-j3Nhvs7YXqQS1ic" }, "attributes": { "enabled": true, - "created": 1560890215, - "updated": 1560890215, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/17499599240?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa3-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d6577cd70def8c4f184820d5838c85fa", "x-ms-return-client-request-id": "true" @@ -75,54 +118,55 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "508", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7b0e2991-d1ea-45d1-8c1f-8308184f3ea5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "43786ee7-9db7-46cd-8eb0-dc7489a11989", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599240", - "deletedDate": 1560890215, - "scheduledPurgeDate": 1568666215, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599240", + "deletedDate": 1565113812, + "scheduledPurgeDate": 1572889812, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599240/93b20107f9134cf0a4346fdc8962ed53", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240\u002fee4baa1864694f8bb53cd505d8f5c63e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "vEJpmRIVZtlVo2wjpt8N-iaD06yACbZ27xqazgGdCYE", - "y": "r7yrQuO5hM2ppBzydQpp9XlBDZneGbllM8Y2CjHDRIs" + "x": "ARsgEYbl21VGr7aaDSYhQRpVBgH_sfkSHOJ8RRL0PQA", + "y": "yKc9xEIGK6_VF4d-lpOrNXVZ5NM-j3Nhvs7YXqQS1ic" }, "attributes": { "enabled": true, - "created": 1560890215, - "updated": 1560890215, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/17499599241/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599241\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0376162c19e261da2341db0cbde21f16", "x-ms-return-client-request-id": "true" @@ -134,50 +178,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "653b5773-f5d2-40c4-a49a-48bb125a4f2e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ae0134b6-39af-40e8-892c-fb1dbc3078bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599241/d61508d22d924af597c51856f297a2a2", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599241\u002fbb4548a3b547438aa41d291cf6235eb8", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "3s22UIM5Ukhrb08Ti-2gKAvidrzOCnLugT9qkXVDZkA", - "y": "-a5cP94I8m2KGGxWOD2WRSpeKOzrcRr6_ThIKmVlgvA" + "x": "XoQgAdvdpf-ZzUX6UGNxq6HvJhBcT7UyF9V8SYHEzDs", + "y": "4xMi59ysXVmBq2gXVCCm8mDLWXRzG5yuqoF_gFbUHl4" }, "attributes": { "enabled": true, - "created": 1560890216, - "updated": 1560890216, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/17499599241?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599241?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fa5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "65b487de9ddbac05b279609b84dbaaa9", "x-ms-return-client-request-id": "true" @@ -187,236 +232,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "508", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:36:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aea644ba-eceb-4863-bd5a-3fa38b67910d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "735cc59b-4d7a-4142-921e-75accdc85600", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599241", - "deletedDate": 1560890216, - "scheduledPurgeDate": 1568666216, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599241", + "deletedDate": 1565113812, + "scheduledPurgeDate": 1572889812, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599241/d61508d22d924af597c51856f297a2a2", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599241\u002fbb4548a3b547438aa41d291cf6235eb8", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "3s22UIM5Ukhrb08Ti-2gKAvidrzOCnLugT9qkXVDZkA", - "y": "-a5cP94I8m2KGGxWOD2WRSpeKOzrcRr6_ThIKmVlgvA" + "x": "XoQgAdvdpf-ZzUX6UGNxq6HvJhBcT7UyF9V8SYHEzDs", + "y": "4xMi59ysXVmBq2gXVCCm8mDLWXRzG5yuqoF_gFbUHl4" }, "attributes": { "enabled": true, - "created": 1560890216, - "updated": 1560890216, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/?api-version=7.0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "00156b18550f6955a08e84e15c39a4b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4083", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd479e3b-187f-4b14-9140-71441fb8af03", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1007513984", - "deletedDate": 1560379203, - "scheduledPurgeDate": 1568155203, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1007513984", - "attributes": { - "enabled": true, - "created": 1560379174, - "updated": 1560379174, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1033722629", - "deletedDate": 1560374970, - "scheduledPurgeDate": 1568150970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1033722629", - "attributes": { - "enabled": true, - "created": 1560374969, - "updated": 1560374969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1101611646", - "deletedDate": 1560373933, - "scheduledPurgeDate": 1568149933, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1101611646", - "attributes": { - "enabled": true, - "created": 1560373932, - "updated": 1560373932, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1161171922", - "deletedDate": 1560378153, - "scheduledPurgeDate": 1568154153, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1161171922", - "attributes": { - "enabled": true, - "created": 1560378153, - "updated": 1560378153, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1202171351", - "deletedDate": 1560371877, - "scheduledPurgeDate": 1568147877, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1202171351", - "attributes": { - "enabled": true, - "created": 1560371877, - "updated": 1560371877, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1221764014", - "deletedDate": 1560365000, - "scheduledPurgeDate": 1568141000, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1221764014", - "attributes": { - "enabled": true, - "created": 1560364975, - "updated": 1560364975, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1225285598", - "deletedDate": 1560364888, - "scheduledPurgeDate": 1568140888, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1225285598", - "attributes": { - "enabled": true, - "created": 1560364888, - "updated": 1560364888, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1258178014", - "deletedDate": 1560372035, - "scheduledPurgeDate": 1568148035, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1258178014", - "attributes": { - "enabled": true, - "created": 1560372035, - "updated": 1560372035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/12946988", - "deletedDate": 1560377998, - "scheduledPurgeDate": 1568153998, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/12946988", - "attributes": { - "enabled": true, - "created": 1560377998, - "updated": 1560377998, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1298735030", - "deletedDate": 1560364510, - "scheduledPurgeDate": 1568140510, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1298735030", - "attributes": { - "enabled": true, - "created": 1560364471, - "updated": 1560364471, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1299108697", - "deletedDate": 1560375250, - "scheduledPurgeDate": 1568151250, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1299108697", - "attributes": { - "enabled": true, - "created": 1560375088, - "updated": 1560375088, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1334913095", - "deletedDate": 1560378289, - "scheduledPurgeDate": 1568154289, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1334913095", - "attributes": { - "enabled": false, - "created": 1560378289, - "updated": 1560378289, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE16TTBPVEV6TURrMUx6azBNVFU1TkVORVF6azFSalF4T1VZNU1ESkZNalU1UlVaQ05UbEdRamcxSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM4eE16TTBPVEV6TURrMUx6azBNVFU1TkVORVF6azFSalF4T1VZNU1ESkZNalU1UlVaQ05UbEdRamcxSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fab-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8ebfe25062cbea64607b556d6e8745d1", "x-ms-return-client-request-id": "true" @@ -425,1311 +288,148 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3400", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:07 GMT", + "Content-Length": "1473", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b22b8a27-9b01-4652-9281-7adf1f0eb858", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ff3c64d5-9b17-4d28-8a1e-ff6c24f25435", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1350112317", - "deletedDate": 1560378061, - "scheduledPurgeDate": 1568154061, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1350112317", - "attributes": { - "enabled": true, - "created": 1560378061, - "updated": 1560378061, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1374969203", - "deletedDate": 1560373922, - "scheduledPurgeDate": 1568149922, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1374969203", - "attributes": { - "enabled": true, - "created": 1560373922, - "updated": 1560373922, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/139860560", - "deletedDate": 1560364511, - "scheduledPurgeDate": 1568140511, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/139860560", - "attributes": { - "enabled": true, - "created": 1560364472, - "updated": 1560364472, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1432837954", - "deletedDate": 1560378169, - "scheduledPurgeDate": 1568154169, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1432837954", - "attributes": { - "enabled": true, - "created": 1560378169, - "updated": 1560378169, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1437462188", - "deletedDate": 1560376089, - "scheduledPurgeDate": 1568152089, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1437462188", - "attributes": { - "enabled": false, - "created": 1560376089, - "updated": 1560376089, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1449289597", - "deletedDate": 1560373541, - "scheduledPurgeDate": 1568149541, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1449289597", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599240", + "deletedDate": 1565113812, + "scheduledPurgeDate": 1572889812, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599240", "attributes": { "enabled": true, - "created": 1560373541, - "updated": 1560373541, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1493747779", - "deletedDate": 1560379429, - "scheduledPurgeDate": 1568155429, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1493747779", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599241", + "deletedDate": 1565113812, + "scheduledPurgeDate": 1572889812, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f17499599241", "attributes": { "enabled": true, - "created": 1560379407, - "updated": 1560379407, + "created": 1565113812, + "updated": 1565113812, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1499316617", - "deletedDate": 1560374552, - "scheduledPurgeDate": 1568150552, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1499316617", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002fCloudECKey-f4230c5f-348f-4f2d-8aa0-80f4d3ac727d", + "deletedDate": 1565083517, + "scheduledPurgeDate": 1572859517, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002fCloudECKey-f4230c5f-348f-4f2d-8aa0-80f4d3ac727d", "attributes": { "enabled": true, - "created": 1560374509, - "updated": 1560374509, + "exp": 1596705912685, + "created": 1565083512, + "updated": 1565083512, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1528358383", - "deletedDate": 1560372035, - "scheduledPurgeDate": 1568148035, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1528358383", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002fCloudRsaKey-f989e30d-d2db-4f87-bd23-ba28ca528ae4", + "deletedDate": 1565083516, + "scheduledPurgeDate": 1572859516, + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002fCloudRsaKey-f989e30d-d2db-4f87-bd23-ba28ca528ae4", "attributes": { "enabled": true, - "created": 1560372035, - "updated": 1560372035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1539864055", - "deletedDate": 1560376400, - "scheduledPurgeDate": 1568152400, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1539864055", - "attributes": { - "enabled": false, - "created": 1560376400, - "updated": 1560376400, + "exp": 1596705913280, + "created": 1565083516, + "updated": 1565083516, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" + "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599240?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fae-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7fcc60f37943545fd509da5529f05ceb", + "x-ms-client-request-id": "fbedb349256cd774826ab9c2880fc170", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4089", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:08 GMT", + "Date": "Tue, 06 Aug 2019 17:50:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f3207188-c070-4c58-89bf-afb94a1f4d15", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a55575cf-ab1c-46b1-9aba-552db07b9158", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1556734246", - "deletedDate": 1560378169, - "scheduledPurgeDate": 1568154169, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1556734246", - "attributes": { - "enabled": true, - "created": 1560378169, - "updated": 1560378169, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1568604186", - "deletedDate": 1560365078, - "scheduledPurgeDate": 1568141078, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1568604186", - "attributes": { - "enabled": true, - "created": 1560365077, - "updated": 1560365077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1584948566", - "deletedDate": 1560377966, - "scheduledPurgeDate": 1568153966, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1584948566", - "attributes": { - "enabled": true, - "created": 1560377966, - "updated": 1560377966, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1595598628", - "deletedDate": 1560374292, - "scheduledPurgeDate": 1568150292, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1595598628", - "attributes": { - "enabled": true, - "created": 1560374292, - "updated": 1560374292, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1597935969", - "deletedDate": 1560377165, - "scheduledPurgeDate": 1568153165, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1597935969", - "attributes": { - "enabled": false, - "created": 1560377123, - "updated": 1560377123, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1608304173", - "deletedDate": 1560374308, - "scheduledPurgeDate": 1568150308, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1608304173", - "attributes": { - "enabled": true, - "created": 1560374308, - "updated": 1560374308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1608698807", - "deletedDate": 1560363628, - "scheduledPurgeDate": 1568139628, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1608698807", - "attributes": { - "enabled": true, - "created": 1560363590, - "updated": 1560363590, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1610471226", - "deletedDate": 1560378030, - "scheduledPurgeDate": 1568154030, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1610471226", - "attributes": { - "enabled": true, - "created": 1560378029, - "updated": 1560378029, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1618368194", - "deletedDate": 1560375537, - "scheduledPurgeDate": 1568151537, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1618368194", - "attributes": { - "enabled": true, - "created": 1560375537, - "updated": 1560375537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1645695659", - "deletedDate": 1560373510, - "scheduledPurgeDate": 1568149510, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1645695659", - "attributes": { - "enabled": true, - "created": 1560373510, - "updated": 1560373510, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1724486190", - "deletedDate": 1560375518, - "scheduledPurgeDate": 1568151518, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1724486190", - "attributes": { - "enabled": true, - "created": 1560375504, - "updated": 1560375504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599240", - "deletedDate": 1560890215, - "scheduledPurgeDate": 1568666215, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599240", - "attributes": { - "enabled": true, - "created": 1560890215, - "updated": 1560890215, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTRJV3RsZVM4eE56UTVPVFU1T1RJME1DODJPRGs0T1RReU9URTBOVGMwTUVNMVFqVkZRVUl6TVRCR01rUkVNek0xTVNFd01EQXdNamdoT1RrNU9TMHhNaTB6TVZReU16bzFPVG8xT1M0NU9UazVPVGs1V2lFLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTRJV3RsZVM4eE56UTVPVFU1T1RJME1DODJPRGs0T1RReU9URTBOVGMwTUVNMVFqVkZRVUl6TVRCR01rUkVNek0xTVNFd01EQXdNamdoT1RrNU9TMHhNaTB6TVZReU16bzFPVG8xT1M0NU9UazVPVGs1V2lFLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f17499599241?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06faf-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "419098ce74e7b697062aa093ffe8fb18", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3770", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9ec5f11b-cead-4492-a53c-dcfa1a823554", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599241", - "deletedDate": 1560890216, - "scheduledPurgeDate": 1568666216, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/17499599241", - "attributes": { - "enabled": true, - "created": 1560890216, - "updated": 1560890216, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1773139216", - "deletedDate": 1560377756, - "scheduledPurgeDate": 1568153756, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1773139216", - "attributes": { - "enabled": true, - "exp": 1560377755, - "created": 1560377755, - "updated": 1560377756, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1784794548", - "deletedDate": 1560380486, - "scheduledPurgeDate": 1568156486, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1784794548", - "attributes": { - "enabled": true, - "created": 1560380486, - "updated": 1560380486, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/180759389", - "deletedDate": 1560377423, - "scheduledPurgeDate": 1568153423, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/180759389", - "attributes": { - "enabled": true, - "exp": 1560377723264, - "created": 1560377423, - "updated": 1560377423, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1830553916", - "deletedDate": 1560363375, - "scheduledPurgeDate": 1568139375, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1830553916", - "attributes": { - "enabled": true, - "created": 1560363374, - "updated": 1560363374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1861282159", - "deletedDate": 1560378216, - "scheduledPurgeDate": 1568154216, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1861282159", - "attributes": { - "enabled": true, - "created": 1560378216, - "updated": 1560378216, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1895620033", - "deletedDate": 1560377972, - "scheduledPurgeDate": 1568153972, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1895620033", - "attributes": { - "enabled": true, - "created": 1560377972, - "updated": 1560377972, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1897393706", - "deletedDate": 1560377601, - "scheduledPurgeDate": 1568153601, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1897393706", - "attributes": { - "enabled": true, - "exp": 1560377900831, - "created": 1560377600, - "updated": 1560377600, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1909072118", - "deletedDate": 1560375518, - "scheduledPurgeDate": 1568151518, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1909072118", - "attributes": { - "enabled": true, - "created": 1560375441, - "updated": 1560375441, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1924505550", - "deletedDate": 1560371167, - "scheduledPurgeDate": 1568147167, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1924505550", - "attributes": { - "enabled": true, - "created": 1560371166, - "updated": 1560371166, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1935071491", - "deletedDate": 1560365077, - "scheduledPurgeDate": 1568141077, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1935071491", - "attributes": { - "enabled": true, - "created": 1560365077, - "updated": 1560365077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4T1RreU56SXpPREl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4T1RreU56SXpPREl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fbedb349256cd774826ab9c2880fc170", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4075", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb46dfb4-999e-4a21-9b35-05fe90067f6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1992723823", - "deletedDate": 1560378109, - "scheduledPurgeDate": 1568154109, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1992723823", - "attributes": { - "enabled": true, - "exp": 1560378109, - "created": 1560378109, - "updated": 1560378109, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1993066193", - "deletedDate": 1560375719, - "scheduledPurgeDate": 1568151719, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1993066193", - "attributes": { - "enabled": true, - "created": 1560375719, - "updated": 1560375719, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2057312876", - "deletedDate": 1560378864, - "scheduledPurgeDate": 1568154864, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2057312876", - "attributes": { - "enabled": true, - "created": 1560378694, - "updated": 1560378694, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2062687594", - "deletedDate": 1560375970, - "scheduledPurgeDate": 1568151970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2062687594", - "attributes": { - "enabled": true, - "created": 1560375907, - "updated": 1560375907, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/21289878", - "deletedDate": 1560377998, - "scheduledPurgeDate": 1568153998, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/21289878", - "attributes": { - "enabled": true, - "created": 1560377998, - "updated": 1560377998, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/215983568", - "deletedDate": 1560373969, - "scheduledPurgeDate": 1568149969, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/215983568", - "attributes": { - "enabled": true, - "created": 1560373969, - "updated": 1560373969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/241663833", - "deletedDate": 1560363624, - "scheduledPurgeDate": 1568139624, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/241663833", - "attributes": { - "enabled": true, - "created": 1560363582, - "updated": 1560363582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/244695609", - "deletedDate": 1560378077, - "scheduledPurgeDate": 1568154077, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/244695609", - "attributes": { - "enabled": true, - "created": 1560378077, - "updated": 1560378077, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/26110913", - "deletedDate": 1560374270, - "scheduledPurgeDate": 1568150270, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/26110913", - "attributes": { - "enabled": true, - "created": 1560374270, - "updated": 1560374270, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/27973667", - "deletedDate": 1560363474, - "scheduledPurgeDate": 1568139474, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/27973667", - "attributes": { - "enabled": true, - "created": 1560363474, - "updated": 1560363474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/280358434", - "deletedDate": 1560373002, - "scheduledPurgeDate": 1568149002, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/280358434", - "attributes": { - "enabled": true, - "created": 1560373002, - "updated": 1560373002, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/283986871", - "deletedDate": 1560379648, - "scheduledPurgeDate": 1568155648, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/283986871", - "attributes": { - "enabled": true, - "created": 1560379648, - "updated": 1560379648, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4eU9ETTVPRFk0TnpFdk9EVXlSakJDT0RFNVFrRTNOREkzUmtFd01qYzNNREU0TXpVd05FVXpNRVFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4eU9ETTVPRFk0TnpFdk9EVXlSakJDT0RFNVFrRTNOREkzUmtFd01qYzNNREU0TXpVd05FVXpNRVFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d59e6a1e03f67ee9c8167818d8cb54ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3411", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ef9bea4e-27c5-4207-b66a-ae78c257d262", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/319106794", - "deletedDate": 1560363847, - "scheduledPurgeDate": 1568139847, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/319106794", - "attributes": { - "enabled": true, - "created": 1560363847, - "updated": 1560363847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/357892868", - "deletedDate": 1560377297, - "scheduledPurgeDate": 1568153297, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/357892868", - "attributes": { - "enabled": true, - "exp": 1560377597347, - "created": 1560377297, - "updated": 1560377297, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/365175570", - "deletedDate": 1560365000, - "scheduledPurgeDate": 1568141000, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/365175570", - "attributes": { - "enabled": true, - "created": 1560364976, - "updated": 1560364976, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/437156052", - "deletedDate": 1560380323, - "scheduledPurgeDate": 1568156323, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/437156052", - "attributes": { - "enabled": true, - "created": 1560380323, - "updated": 1560380323, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/490679838", - "deletedDate": 1560373953, - "scheduledPurgeDate": 1568149953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/490679838", - "attributes": { - "enabled": true, - "created": 1560373953, - "updated": 1560373953, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/521919761", - "deletedDate": 1560378045, - "scheduledPurgeDate": 1568154045, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/521919761", - "attributes": { - "enabled": true, - "created": 1560378045, - "updated": 1560378045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/562530938", - "deletedDate": 1560378420, - "scheduledPurgeDate": 1568154420, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/562530938", - "attributes": { - "enabled": true, - "created": 1560378420, - "updated": 1560378420, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/565039940", - "deletedDate": 1560374276, - "scheduledPurgeDate": 1568150276, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/565039940", - "attributes": { - "enabled": true, - "created": 1560374276, - "updated": 1560374276, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/577460393", - "deletedDate": 1560378305, - "scheduledPurgeDate": 1568154305, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/577460393", - "attributes": { - "enabled": true, - "exp": 1560378305, - "created": 1560378305, - "updated": 1560378305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/590522683", - "deletedDate": 1560378515, - "scheduledPurgeDate": 1568154515, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/590522683", - "attributes": { - "enabled": true, - "created": 1560378515, - "updated": 1560378515, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeUlXdGxlUzgxT1RNeU1UazJNeUV3TURBd01qZ2hPVGs1T1MweE1pMHpNVlF5TXpvMU9UbzFPUzQ1T1RrNU9UazVXaUUtIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeUlXdGxlUzgxT1RNeU1UazJNeUV3TURBd01qZ2hPVGs1T1MweE1pMHpNVlF5TXpvMU9UbzFPUzQ1T1RrNU9UazVXaUUtIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "750cc10d6002a97e24b9be7cbbd52ef7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4050", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4d2fba42-3942-45cc-8265-68728c4f9ea2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/59321963", - "deletedDate": 1560378247, - "scheduledPurgeDate": 1568154247, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/59321963", - "attributes": { - "enabled": true, - "created": 1560378247, - "updated": 1560378247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/619915962", - "deletedDate": 1560378093, - "scheduledPurgeDate": 1568154093, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/619915962", - "attributes": { - "enabled": false, - "created": 1560378093, - "updated": 1560378093, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/624131602", - "deletedDate": 1560379208, - "scheduledPurgeDate": 1568155208, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/624131602", - "attributes": { - "enabled": true, - "created": 1560379176, - "updated": 1560379176, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6529598", - "deletedDate": 1560378273, - "scheduledPurgeDate": 1568154273, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6529598", - "attributes": { - "enabled": true, - "created": 1560378273, - "updated": 1560378273, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/699277896", - "deletedDate": 1560378262, - "scheduledPurgeDate": 1568154262, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/699277896", - "attributes": { - "enabled": true, - "created": 1560378262, - "updated": 1560378262, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/719950631", - "deletedDate": 1560379429, - "scheduledPurgeDate": 1568155429, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/719950631", - "attributes": { - "enabled": true, - "created": 1560379407, - "updated": 1560379407, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/721281196", - "deletedDate": 1560363953, - "scheduledPurgeDate": 1568139953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/721281196", - "attributes": { - "enabled": true, - "created": 1560363908, - "updated": 1560363908, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/723978838", - "deletedDate": 1560378890, - "scheduledPurgeDate": 1568154890, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/723978838", - "attributes": { - "enabled": true, - "created": 1560378707, - "updated": 1560378707, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/738039742", - "deletedDate": 1560363374, - "scheduledPurgeDate": 1568139374, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/738039742", - "attributes": { - "enabled": true, - "created": 1560363374, - "updated": 1560363374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/783977228", - "deletedDate": 1560374970, - "scheduledPurgeDate": 1568150970, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/783977228", - "attributes": { - "enabled": true, - "created": 1560374969, - "updated": 1560374969, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/79085616", - "deletedDate": 1560380730, - "scheduledPurgeDate": 1568156730, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/79085616", - "attributes": { - "enabled": true, - "created": 1560380730, - "updated": 1560380730, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/809369582", - "deletedDate": 1560378014, - "scheduledPurgeDate": 1568154014, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/809369582", - "attributes": { - "enabled": false, - "created": 1560378014, - "updated": 1560378014, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4NE1Ea3pOamsxT0RJdk16TkNRVU5CUWpBMlJERkNORFF6UkRreE9UTXdSRFEyUkRnNE5ERTVRalloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjAhTURBd01EUTJJV3RsZVM4NE1Ea3pOamsxT0RJdk16TkNRVU5CUWpBMlJERkNORFF6UkRreE9UTXdSRFEyUkRnNE5ERTVRalloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9575306925494522c96f3356ac5bffb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8707ad59-8f5a-435b-b650-bf5d285973e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/825940204", - "deletedDate": 1560378185, - "scheduledPurgeDate": 1568154185, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/825940204", - "attributes": { - "enabled": false, - "created": 1560378184, - "updated": 1560378184, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/880893243", - "deletedDate": 1560363848, - "scheduledPurgeDate": 1568139848, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/880893243", - "attributes": { - "enabled": true, - "created": 1560363847, - "updated": 1560363847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/884455615", - "deletedDate": 1560371877, - "scheduledPurgeDate": 1568147877, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/884455615", - "attributes": { - "enabled": true, - "created": 1560371877, - "updated": 1560371877, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/901778190", - "deletedDate": 1560378137, - "scheduledPurgeDate": 1568154137, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/901778190", - "attributes": { - "enabled": true, - "created": 1560378137, - "updated": 1560378137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/909338541", - "deletedDate": 1560373020, - "scheduledPurgeDate": 1568149020, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/909338541", - "attributes": { - "enabled": true, - "created": 1560373020, - "updated": 1560373020, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/913233938", - "deletedDate": 1560364888, - "scheduledPurgeDate": 1568140888, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/913233938", - "attributes": { - "enabled": true, - "created": 1560364888, - "updated": 1560364888, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/91566257", - "deletedDate": 1560363475, - "scheduledPurgeDate": 1568139475, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/91566257", - "attributes": { - "enabled": true, - "created": 1560363474, - "updated": 1560363474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/919550051", - "deletedDate": 1560363953, - "scheduledPurgeDate": 1568139953, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/919550051", - "attributes": { - "enabled": true, - "created": 1560363908, - "updated": 1560363908, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/94332741", - "deletedDate": 1560375250, - "scheduledPurgeDate": 1568151250, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/94332741", - "attributes": { - "enabled": true, - "created": 1560375241, - "updated": 1560375241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/967911834", - "deletedDate": 1560379648, - "scheduledPurgeDate": 1568155648, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/967911834", - "attributes": { - "enabled": true, - "created": 1560379648, - "updated": 1560379648, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TnpFd01EUTBPRGNoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TnpFd01EUTBPRGNoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c7b4cd164b03be6debf5b13d456cc3f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e78b27b7-155c-4d86-866f-0627e23a7a51", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/971004487", - "deletedDate": 1560365103, - "scheduledPurgeDate": 1568141103, - "kid": "https://pakrym-keyvault.vault.azure.net/keys/971004487", - "attributes": { - "enabled": false, - "created": 1560365103, - "updated": 1560365103, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": null - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599240?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2c6d3fab57ac57612acc283c9fda90c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:37:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f629610b-7073-4ff8-83bf-c8dbec3f68d0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/17499599241?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3e83e9f9d50681d38c91e59f134e73b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:37:14 GMT", + "Date": "Tue, 06 Aug 2019 17:50:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b5040bc5-0646-4dcb-b066-4da0b30baa58", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b175f67e-793d-4992-9bf2-5586e28cd8fd", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1344158585" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKey.json index 3751c1c1b81f..77ae6637fd29 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2126831586/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef4-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "2a75de8e4709c4f987ef489d3786b123", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "561874c7-5900-44d7-b9a8-5e7b7bc9a539", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2a75de8e4709c4f987ef489d3786b123", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8062960a-6403-450c-ac6c-122421afa996", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bb4cba52-91d3-447d-ba2d-7b845c42f2da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2126831586/719cb702f78c4f7c95654a1e16209f69", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002f29838dbe3eaa493491c2fa33227eb1f8", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "zq_amHb8q7FKSi1P61UrLmfjjEbxLJoC8AX06xnBPdw", - "y": "K2b8Qyx464RvZdHhQ4ioSx5FeQ9vFmzwJx0cRk6eyfs" + "x": "970XbeAtHqx91oBysR_1WwX4tVXmDUIfUIhw1rKhFGo", + "y": "rJIC-wN7gN_asUodMNEbt4DhRgHIzSuYiy6HU9MSGYg" }, "attributes": { "enabled": true, - "created": 1560889938, - "updated": 1560889938, + "created": 1565113501, + "updated": 1565113501, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2126831586/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1362ee8bd388fabd246493b41b85abb8", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fe8b0e96-ca30-43aa-b122-953c210dbef5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "919f7bc0-49bf-4f88-a2d9-4ba16253b262", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2126831586/719cb702f78c4f7c95654a1e16209f69", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002f29838dbe3eaa493491c2fa33227eb1f8", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "zq_amHb8q7FKSi1P61UrLmfjjEbxLJoC8AX06xnBPdw", - "y": "K2b8Qyx464RvZdHhQ4ioSx5FeQ9vFmzwJx0cRk6eyfs" + "x": "970XbeAtHqx91oBysR_1WwX4tVXmDUIfUIhw1rKhFGo", + "y": "rJIC-wN7gN_asUodMNEbt4DhRgHIzSuYiy6HU9MSGYg" }, "attributes": { "enabled": true, - "created": 1560889938, - "updated": 1560889938, + "created": 1565113501, + "updated": 1565113501, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2126831586?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ef6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3c43310d59d85216b1de14fb2aa33ac7", "x-ms-return-client-request-id": "true" @@ -128,79 +172,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e23817bc-1b2f-4a73-bad3-0b7e66dc8e8d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0cff0a56-2f70-4d6e-a763-fe592249e9e0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2126831586", - "deletedDate": 1560889938, - "scheduledPurgeDate": 1568665938, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f2126831586", + "deletedDate": 1565113501, + "scheduledPurgeDate": 1572889501, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2126831586/719cb702f78c4f7c95654a1e16209f69", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2126831586\u002f29838dbe3eaa493491c2fa33227eb1f8", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "zq_amHb8q7FKSi1P61UrLmfjjEbxLJoC8AX06xnBPdw", - "y": "K2b8Qyx464RvZdHhQ4ioSx5FeQ9vFmzwJx0cRk6eyfs" + "x": "970XbeAtHqx91oBysR_1WwX4tVXmDUIfUIhw1rKhFGo", + "y": "rJIC-wN7gN_asUodMNEbt4DhRgHIzSuYiy6HU9MSGYg" }, "attributes": { "enabled": true, - "created": 1560889938, - "updated": 1560889938, + "created": 1565113501, + "updated": 1565113501, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2126831586?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f2126831586?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06efc-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9bb7133535137784fdf76221b2b0fc5e", + "x-ms-client-request-id": "ab74f671340af46d4650d5640d664626", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:27 GMT", + "Date": "Tue, 06 Aug 2019 17:45:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a0773335-c913-4bfc-8944-42dbd0325b94", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e9120fc8-9f79-4e01-8951-b17989a08407", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "538209305" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyAsync.json index e0833b7edef6..0e5d5e2d1f4a 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1630488450/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fb2-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "e327d9cb157c00712cee0daf57f62af8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f9309ee2-c620-4a36-aa71-f39df053fa04", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fb2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e327d9cb157c00712cee0daf57f62af8", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9634ba0e-bbd0-43f7-9466-3aa12955a613", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f8f6d70f-cff0-4fc3-a420-ad7af8f09d42", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1630488450/e2d671893f7a427dbe8ffb45f40454f4", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002f02308c5063fe4b8da42a145ed0b35872", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "SKlWTW5HkASDwo4kDlN11K5lVlI5E1q38GgLtQMtXWc", - "y": "nAYatgSmmWsmGZXANgviOYC871fy284aaOqzbTp43CU" + "x": "Z9u-Og58Tuk6pavgJ_Sne0Gi7EzUn5mArsgFu7BjSP0", + "y": "m7psy_Alg6ucwnEDyZHQyPSUMbY4dLZN-2S6Q-cylAU" }, "attributes": { "enabled": true, - "created": 1560890235, - "updated": 1560890235, + "created": 1565113828, + "updated": 1565113828, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1630488450/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fb3-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1f5b03108201e75007c60cac2f8f376a", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d8370a24-8a4f-4ea9-a460-08df73424aa4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c81aa434-5bbb-4910-b5f9-cebdb485e7b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1630488450/e2d671893f7a427dbe8ffb45f40454f4", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002f02308c5063fe4b8da42a145ed0b35872", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "SKlWTW5HkASDwo4kDlN11K5lVlI5E1q38GgLtQMtXWc", - "y": "nAYatgSmmWsmGZXANgviOYC871fy284aaOqzbTp43CU" + "x": "Z9u-Og58Tuk6pavgJ_Sne0Gi7EzUn5mArsgFu7BjSP0", + "y": "m7psy_Alg6ucwnEDyZHQyPSUMbY4dLZN-2S6Q-cylAU" }, "attributes": { "enabled": true, - "created": 1560890235, - "updated": 1560890235, + "created": 1565113828, + "updated": 1565113828, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1630488450?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fb4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5e83eedf3b4640d9275729b7aa451a55", "x-ms-return-client-request-id": "true" @@ -128,53 +172,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd08e746-201c-4af3-8cbd-527b977a0c43", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13358bb2-66d3-4d00-8a45-23a1384c052e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1630488450", - "deletedDate": 1560890235, - "scheduledPurgeDate": 1568666235, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1630488450", + "deletedDate": 1565113828, + "scheduledPurgeDate": 1572889828, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1630488450/e2d671893f7a427dbe8ffb45f40454f4", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1630488450\u002f02308c5063fe4b8da42a145ed0b35872", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "SKlWTW5HkASDwo4kDlN11K5lVlI5E1q38GgLtQMtXWc", - "y": "nAYatgSmmWsmGZXANgviOYC871fy284aaOqzbTp43CU" + "x": "Z9u-Og58Tuk6pavgJ_Sne0Gi7EzUn5mArsgFu7BjSP0", + "y": "m7psy_Alg6ucwnEDyZHQyPSUMbY4dLZN-2S6Q-cylAU" }, "attributes": { "enabled": true, - "created": 1560890235, - "updated": 1560890235, + "created": 1565113828, + "updated": 1565113828, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1630488450?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1630488450?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fb8-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "07008c86b175aee24b8f5d7f70d6efef", "x-ms-return-client-request-id": "true" @@ -183,24 +228,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:37:24 GMT", + "Date": "Tue, 06 Aug 2019 17:50:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb210123-d9a9-49d7-b0d3-d53791a42674", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5ffa8be3-8639-4cf3-b184-f05c5fcd3da7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "347540305" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExisting.json index dd7c4b6bfc63..4a35ace720c5 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/526083110/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f526083110\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06efe-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "ec54eebf08daf760a8bf0649c969f814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d725f6b8-aa91-443e-941f-40a117021a28", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f526083110\u002f?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06efe-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ec54eebf08daf760a8bf0649c969f814", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ee42dfef-d48c-4b9e-a063-40298e4f7f7e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a8317c4e-493c-47b8-b032-dc6db4c5caff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1982002934" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExistingAsync.json index 145ca559e5de..b99e8a09f98d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1710796886/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1710796886\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fba-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "7d02ce44b5a753ed8d04ee1c91ab1915", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f0e8d5f7-ee6f-4506-a22d-dc6e07921ff7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1710796886\u002f?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fba-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7d02ce44b5a753ed8d04ee1c91ab1915", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "70", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "94ddbc55-a2c7-4fd5-9af8-3845525520f2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1df2f2f5-3308-4cda-b4d6-d1b917ce1586", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1400492689" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersion.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersion.json index 5f23910a30f1..ba673a8deb22 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersion.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersion.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2009631410/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f18-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "47c28be6adb2b04586dbf674859844f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f076f142-18e5-497d-86ee-fb6ac957e707", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f18-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "47c28be6adb2b04586dbf674859844f3", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f0ab9876-0fc6-43f3-99ef-84ecd52e8f16", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e529e460-f12a-490a-ba9b-bad238e6c14e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2009631410/37b416e1a6504f64ae1e3f92fa544c39", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fbbff555bd42c41eaa30eb937e3a03285", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ftUKacGXRET8I5K7oukMFfhcjRclAWAKbTfL_eoOE7M", - "y": "sZMhTRL54HUYHWiQYWfroxVOZWFzhm-qahurKtk2PUQ" + "x": "LTJXeFwDlmMhQ05c5t4g9742RmFgxmaqC-bwTKx1PDo", + "y": "TDjwp6Hu4nFdwZ7QC1Y-NqAqxrKd8VdI88UCPdeJXmc" }, "attributes": { "enabled": true, - "created": 1560889976, - "updated": 1560889976, + "created": 1565113556, + "updated": 1565113556, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2009631410/37b416e1a6504f64ae1e3f92fa544c39?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fbbff555bd42c41eaa30eb937e3a03285?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f19-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f74a9ecfe266a1b52c250e871eb04d39", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "160e9a14-3f7a-42ad-9be4-a6e18af8e33c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ee9e1acf-0729-45ae-8976-8355be648cd0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2009631410/37b416e1a6504f64ae1e3f92fa544c39", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fbbff555bd42c41eaa30eb937e3a03285", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ftUKacGXRET8I5K7oukMFfhcjRclAWAKbTfL_eoOE7M", - "y": "sZMhTRL54HUYHWiQYWfroxVOZWFzhm-qahurKtk2PUQ" + "x": "LTJXeFwDlmMhQ05c5t4g9742RmFgxmaqC-bwTKx1PDo", + "y": "TDjwp6Hu4nFdwZ7QC1Y-NqAqxrKd8VdI88UCPdeJXmc" }, "attributes": { "enabled": true, - "created": 1560889976, - "updated": 1560889976, + "created": 1565113556, + "updated": 1565113556, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/2009631410?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f1a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "100948844a1333a82f9b574a3c6156a4", "x-ms-return-client-request-id": "true" @@ -128,53 +172,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b9691330-47a5-4c2b-be02-55762f2d68b0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b1d69440-fc04-4849-834e-f02624cd6048", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2009631410", - "deletedDate": 1560889976, - "scheduledPurgeDate": 1568665976, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f2009631410", + "deletedDate": 1565113556, + "scheduledPurgeDate": 1572889556, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/2009631410/37b416e1a6504f64ae1e3f92fa544c39", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f2009631410\u002fbbff555bd42c41eaa30eb937e3a03285", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ftUKacGXRET8I5K7oukMFfhcjRclAWAKbTfL_eoOE7M", - "y": "sZMhTRL54HUYHWiQYWfroxVOZWFzhm-qahurKtk2PUQ" + "x": "LTJXeFwDlmMhQ05c5t4g9742RmFgxmaqC-bwTKx1PDo", + "y": "TDjwp6Hu4nFdwZ7QC1Y-NqAqxrKd8VdI88UCPdeJXmc" }, "attributes": { "enabled": true, - "created": 1560889976, - "updated": 1560889976, + "created": 1565113556, + "updated": 1565113556, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/2009631410?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f2009631410?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f1f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "35be50bc2df0d14d12953f8bf9ed56db", "x-ms-return-client-request-id": "true" @@ -183,24 +228,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:33:11 GMT", + "Date": "Tue, 06 Aug 2019 17:46:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "87ba930f-e27e-4ab0-a559-2ea7aeb864fc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "27601e70-566c-4756-ad0c-830888abf676", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1613609085" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersionAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersionAsync.json index 0423f1d3ddd3..fca4a1efd975 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersionAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeyWithVersionAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1061105343/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd5-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "6f5bb5e46e021125ade834c78b71d62f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bd29f6f0-c252-4990-aa0d-71ee6d97b6d6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6f5bb5e46e021125ade834c78b71d62f", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "adfde64a-ecb1-4c07-9806-4a3da340761a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "afb2ba57-93ed-4f31-9301-512a7bdfddcc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1061105343/fef7bd5ac76b444da4bad1cb6bf37dd1", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002f2d902a891c124dc7976749241bf438df", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ip-AHTCY7g7BUiMC8DhZOXnBVM8qVsVHYnpxQd2W1Tk", - "y": "cKSvjXNMnM0TGuf-FAN4FNntEjaeAr28acJCal-80dg" + "x": "K0e3XDCA04iwEZXVyHsqn-TZVBcGl2tHRrQhUUgki8k", + "y": "LXjUykEV0dvcNXFBeiTltJSI-UR3LaUo4EGuT3OhkqY" }, "attributes": { "enabled": true, - "created": 1560890290, - "updated": 1560890290, + "created": 1565113877, + "updated": 1565113877, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1061105343/fef7bd5ac76b444da4bad1cb6bf37dd1?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002f2d902a891c124dc7976749241bf438df?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "db82d16b3d6bb64aa1a3378368db26bd", "x-ms-return-client-request-id": "true" @@ -75,50 +118,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b365a06-1333-44bb-b7d6-badc5dc82a1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0dcd20cd-bbca-456a-909c-225fe6b68ecf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1061105343/fef7bd5ac76b444da4bad1cb6bf37dd1", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002f2d902a891c124dc7976749241bf438df", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ip-AHTCY7g7BUiMC8DhZOXnBVM8qVsVHYnpxQd2W1Tk", - "y": "cKSvjXNMnM0TGuf-FAN4FNntEjaeAr28acJCal-80dg" + "x": "K0e3XDCA04iwEZXVyHsqn-TZVBcGl2tHRrQhUUgki8k", + "y": "LXjUykEV0dvcNXFBeiTltJSI-UR3LaUo4EGuT3OhkqY" }, "attributes": { "enabled": true, - "created": 1560890290, - "updated": 1560890290, + "created": 1565113877, + "updated": 1565113877, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1061105343?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd7-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b056dca85ca28d73b657f3264bb8d2c1", "x-ms-return-client-request-id": "true" @@ -128,53 +172,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0bca5637-a142-43bc-8241-67798bd95e35", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b9c1af50-204d-4181-b835-6f8e2de96bd7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1061105343", - "deletedDate": 1560890290, - "scheduledPurgeDate": 1568666290, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1061105343", + "deletedDate": 1565113878, + "scheduledPurgeDate": 1572889878, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1061105343/fef7bd5ac76b444da4bad1cb6bf37dd1", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1061105343\u002f2d902a891c124dc7976749241bf438df", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ip-AHTCY7g7BUiMC8DhZOXnBVM8qVsVHYnpxQd2W1Tk", - "y": "cKSvjXNMnM0TGuf-FAN4FNntEjaeAr28acJCal-80dg" + "x": "K0e3XDCA04iwEZXVyHsqn-TZVBcGl2tHRrQhUUgki8k", + "y": "LXjUykEV0dvcNXFBeiTltJSI-UR3LaUo4EGuT3OhkqY" }, "attributes": { "enabled": true, - "created": 1560890290, - "updated": 1560890290, + "created": 1565113877, + "updated": 1565113877, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1061105343?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1061105343?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fdc-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c18de539d62c846e7969276cdf8f7f49", "x-ms-return-client-request-id": "true" @@ -183,24 +228,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:38:25 GMT", + "Date": "Tue, 06 Aug 2019 17:51:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "77cfc745-7737-4176-955a-c7834d111da4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "85e818eb-040b-4194-8595-7a580dc4ce96", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "7658277" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeys.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeys.json index 73458610e180..0fdf96d9a8be 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeys.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeys.json @@ -1,74 +1,60 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/6901189320/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "12", - "Content-Type": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eff-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4f50f551a44d9516974577b6b1cd3617", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "kty": "EC" - }, - "StatusCode": 200, + "RequestBody": null, + "StatusCode": 401, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:29 GMT", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2d8e7ba5-203f-48c6-86b2-75fe216bf576", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8e4b1981-9845-4469-808c-29fdd73c9518", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189320/0920cfe4af3342f2b1889e41c2b9ff11", - "kty": "EC", - "key_ops": [ - "sign", - "verify" - ], - "crv": "P-256", - "x": "B1M1dBiQEKnasVyMU3QixwwFh5DiLnpy10ArjBSJhPY", - "y": "Q_hzBuVkchhYj-Lx4OMie9G_A7HufNHVlXZ2fWfZ7-o" - }, - "attributes": { - "enabled": true, - "created": 1560889949, - "updated": 1560889949, - "recoveryLevel": "Recoverable\u002bPurgeable" + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/6901189321/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06eff-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "05e199a1811c2853a72c030ae8d0accf", + "x-ms-client-request-id": "4f50f551a44d9516974577b6b1cd3617", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -78,363 +64,168 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "10089a5c-d6fa-44f9-a440-6ecb489dc7ce", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "442a845e-a87d-4722-82cc-38bf1993489f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189321/b06c72ca959140dd8aea0ae9f539cf9a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320\u002f322b0c0549394d519d83ba84d1987f9b", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "7XoCjDqTXHBF9dbeHhorF2oV8tcFEnP8AQcJ0hYB9vU", - "y": "tQGEZ2GX_idxqfYCnNIVCV6j6dN6Vwp3ULdabNzI4JM" + "x": "-aqxNLS3YuddOfpnekLDZxaEIa75epW3h6UuTzbdGnA", + "y": "1_6qypWtU4m8UZoQquidJSbfWUNibJtj3xpBRriwyBE" }, "attributes": { "enabled": true, - "created": 1560889949, - "updated": 1560889949, + "created": 1565113523, + "updated": 1565113523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/?api-version=7.0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "39fdf79361c0d6e83302fe4800eafeeb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "797", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bde798ca-a9cd-4915-a0a1-9d638a4eb3ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1284520732", - "attributes": { - "enabled": true, - "created": 1560372609, - "updated": 1560372609, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1355165119", - "attributes": { - "enabled": true, - "created": 1560359846, - "updated": 1560359846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1445054296", - "attributes": { - "enabled": true, - "created": 1560372710, - "updated": 1560372710, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189321\u002fcreate?api-version=7.0", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Length": "12", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f00-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "61bf9295ba61cff8a228a821a10bacc6", + "x-ms-client-request-id": "05e199a1811c2853a72c030ae8d0accf", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "619", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dd3bca39-a439-4068-86ae-4cf1c450be70", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1567954478", - "attributes": { - "enabled": true, - "created": 1560490285, - "updated": 1560490285, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1836433557", - "attributes": { - "enabled": true, - "created": 1560361460, - "updated": 1560361460, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh5TURVM016RXlPRGMySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh5TURVM016RXlPRGMySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ba22a899fdcf4057b00bd219830a28bc", - "x-ms-return-client-request-id": "true" + "RequestBody": { + "kty": "EC" }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "788", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:32 GMT", + "Content-Length": "371", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ec4c5242-f5ee-48d7-b875-d6fc405429ca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e6c331b2-3a60-40e2-9bfa-a9c3810b5e82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/226623797", - "attributes": { - "enabled": true, - "created": 1560489068, - "updated": 1560489068, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/410476706", - "attributes": { - "enabled": true, - "created": 1560358126, - "updated": 1560358126, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/552469494", - "attributes": { - "enabled": true, - "created": 1560363175, - "updated": 1560363175, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzgyTVRrNU1UVTVOakloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" + "key": { + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189321\u002f4bbd2fc325c843719b0b1be02213c21d", + "kty": "EC", + "key_ops": [ + "sign", + "verify" + ], + "crv": "P-256", + "x": "6YqGz01XguNH5OcbGXZP0XGrHsEB28v5e-6AaXq6RAc", + "y": "2wZTC_pQk364SYorOPUe7oSLbYdf4VkXoGqV-4Z2oAc" + }, + "attributes": { + "enabled": true, + "created": 1565113523, + "updated": 1565113523, + "recoveryLevel": "Recoverable\u002bPurgeable" + } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzgyTVRrNU1UVTVOakloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f01-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5675172d4b10d86eff2e9797b8c73427", + "x-ms-client-request-id": "39fdf79361c0d6e83302fe4800eafeeb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1144", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:33 GMT", + "Content-Length": "383", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e201e3a5-1228-4700-b98a-ecdafee26f0c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f0c1cee0-0b1c-4598-9f0d-c1268182af1b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/663174136", - "attributes": { - "enabled": true, - "created": 1560490268, - "updated": 1560490268, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189320", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320", "attributes": { "enabled": true, - "created": 1560889949, - "updated": 1560889949, + "created": 1565113523, + "updated": 1565113523, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189321", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189321", "attributes": { "enabled": true, - "created": 1560889949, - "updated": 1560889949, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/870521343", - "attributes": { - "enabled": true, - "created": 1560358731, - "updated": 1560358731, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/953315574", - "attributes": { - "enabled": true, - "created": 1560363046, - "updated": 1560363046, + "created": 1565113523, + "updated": 1565113523, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TmpjNU1URTRNelFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TmpjNU1URTRNelFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "58af375644c7971c3a7fb055e8de4b97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2ed03f03-575e-4cbf-84ad-3dda1164caf3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/6901189320?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f02-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "89f3eb0056964eb5394abaa166c087e9", + "x-ms-client-request-id": "61bf9295ba61cff8a228a821a10bacc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -442,55 +233,56 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:34 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "50424ef8-09db-4eb2-b85e-73c4b8970381", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "36a92cdc-a856-4833-82a6-c97d19220833", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6901189320", - "deletedDate": 1560889954, - "scheduledPurgeDate": 1568665954, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f6901189320", + "deletedDate": 1565113523, + "scheduledPurgeDate": 1572889523, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189320/0920cfe4af3342f2b1889e41c2b9ff11", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189320\u002f322b0c0549394d519d83ba84d1987f9b", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "B1M1dBiQEKnasVyMU3QixwwFh5DiLnpy10ArjBSJhPY", - "y": "Q_hzBuVkchhYj-Lx4OMie9G_A7HufNHVlXZ2fWfZ7-o" + "x": "-aqxNLS3YuddOfpnekLDZxaEIa75epW3h6UuTzbdGnA", + "y": "1_6qypWtU4m8UZoQquidJSbfWUNibJtj3xpBRriwyBE" }, "attributes": { "enabled": true, - "created": 1560889949, - "updated": 1560889949, + "created": 1565113523, + "updated": 1565113523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/6901189321?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189321?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f03-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4cc3aad6d05be8f4fbdd1b919a18f020", + "x-ms-client-request-id": "ba22a899fdcf4057b00bd219830a28bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -498,112 +290,114 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:34 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d97c38f1-364a-48f0-8386-3f9c8bbe6195", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d2cdbfb-392b-4a65-b775-74eabe463684", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6901189321", - "deletedDate": 1560889954, - "scheduledPurgeDate": 1568665954, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f6901189321", + "deletedDate": 1565113523, + "scheduledPurgeDate": 1572889523, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/6901189321/b06c72ca959140dd8aea0ae9f539cf9a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f6901189321\u002f4bbd2fc325c843719b0b1be02213c21d", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "7XoCjDqTXHBF9dbeHhorF2oV8tcFEnP8AQcJ0hYB9vU", - "y": "tQGEZ2GX_idxqfYCnNIVCV6j6dN6Vwp3ULdabNzI4JM" + "x": "6YqGz01XguNH5OcbGXZP0XGrHsEB28v5e-6AaXq6RAc", + "y": "2wZTC_pQk364SYorOPUe7oSLbYdf4VkXoGqV-4Z2oAc" }, "attributes": { "enabled": true, - "created": 1560889949, - "updated": 1560889949, + "created": 1565113523, + "updated": 1565113523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6901189320?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f6901189320?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f09-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d39aa0acb298e205c367d6c91cd9c55d", + "x-ms-client-request-id": "3e7fc7f7ff1b303bf60a8eb83a24b321", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:38 GMT", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2e4211ef-1edc-4211-946a-b681a1a3a086", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aee45cb0-4ae8-4da3-9335-072586a5d8e8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/6901189321?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f6901189321?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f0a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ef23fdaecabb3d51b254255735417e7f", + "x-ms-client-request-id": "66be9a59ba292b1518c3cafab1775e80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:38 GMT", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1bb693b2-ab92-49fa-b7be-53952ffa3864", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ab08669e-9c01-4c85-929b-5516b0edb008", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1458739165" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysAsync.json index 077939940ba3..ebb1dd6208c5 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysAsync.json @@ -1,74 +1,60 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/7730695690/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "12", - "Content-Type": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dfd56d0340fbfbf94476058d8727a326", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "kty": "EC" - }, - "StatusCode": 200, + "RequestBody": null, + "StatusCode": 401, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:25 GMT", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1b3ec073-3b32-45f4-9821-191a7304b436", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a54f3fbe-5418-4c1b-b2b0-dd42c38c157b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695690/431e59cbda92428585e3f668f9a92c30", - "kty": "EC", - "key_ops": [ - "sign", - "verify" - ], - "crv": "P-256", - "x": "0g3oxkyZTg8tMSYsCK8rnauyNc3MmJsq6RNZ4izqOjA", - "y": "l4xcfqJ1S8ulmyZ4-ze9vfi-1r5N3SE32NkZ2YK8Qw4" - }, - "attributes": { - "enabled": true, - "created": 1560890246, - "updated": 1560890246, - "recoveryLevel": "Recoverable\u002bPurgeable" + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/7730695691/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d47b889bb22f86d4959cde349ebfb5a2", + "x-ms-client-request-id": "dfd56d0340fbfbf94476058d8727a326", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -78,363 +64,168 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "775bbebe-eec2-47b8-ac0b-5fb8b8694d2a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "73d8957c-f87f-49fb-a6dc-3a98a9882d38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695691/b0c85bb3f372459784a846ffff555244", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690\u002f92dc0c5b07204287b8049a2f1654a8d5", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "D2IIzmJyQuEJE-34s__Ocnnt8VbwV0KIkOHGox80Q0g", - "y": "fmiC1kRyTGBfsLy0c7H44uXVp_26BF429xrVln56r_Y" + "x": "DtxFBANsI9j-ZWdbdYL1T1Z-ZJOOwJrYqlnGF3q3D44", + "y": "keBXcvAPi4YYCf0bh7Uam82BGB34GqduO54Zrq5CJIE" }, "attributes": { "enabled": true, - "created": 1560890246, - "updated": 1560890246, + "created": 1565113839, + "updated": 1565113839, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/?api-version=7.0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "23da37b92e26357822c9ba275fd63a69", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "797", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "76d17a7f-a40f-4581-b715-d2deff0c3b9a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1284520732", - "attributes": { - "enabled": true, - "created": 1560372609, - "updated": 1560372609, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1355165119", - "attributes": { - "enabled": true, - "created": 1560359846, - "updated": 1560359846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1445054296", - "attributes": { - "enabled": true, - "created": 1560372710, - "updated": 1560372710, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4TlRVMk56TTBNalEySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695691\u002fcreate?api-version=7.0", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Length": "12", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbc-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a03744e2323e50d2994f4a5e61c45c84", + "x-ms-client-request-id": "d47b889bb22f86d4959cde349ebfb5a2", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "619", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b525006d-5fa9-4be4-8e5c-3d7c9c5e7fff", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1567954478", - "attributes": { - "enabled": true, - "created": 1560490285, - "updated": 1560490285, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1836433557", - "attributes": { - "enabled": true, - "created": 1560361460, - "updated": 1560361460, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4T1Rrek1EWTJNVGt6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzh4T1Rrek1EWTJNVGt6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4fd463c0804d6cff0f46b266f8ac26be", - "x-ms-return-client-request-id": "true" + "RequestBody": { + "kty": "EC" }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "788", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:30 GMT", + "Content-Length": "371", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "27ba37eb-bf62-459b-8601-8dfc98ffdd22", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7d5c3cce-3d02-4ffe-b0e9-b22a58caa258", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [ - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/226623797", - "attributes": { - "enabled": true, - "created": 1560489068, - "updated": 1560489068, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/410476706", - "attributes": { - "enabled": true, - "created": 1560358126, - "updated": 1560358126, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/552469494", - "attributes": { - "enabled": true, - "created": 1560363175, - "updated": 1560363175, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzgyTVRjMk56VTROemtoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" + "key": { + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695691\u002fe2dcdd4b72064496b1591d114f793c7e", + "kty": "EC", + "key_ops": [ + "sign", + "verify" + ], + "crv": "P-256", + "x": "TNLFyfYjf6nuWvspn2ioftAw2AUlTT19myut8-V_nLk", + "y": "Eruwz6gDno5r5Lij6IHKheU8Gzn4HD0soN-3iNSk5-M" + }, + "attributes": { + "enabled": true, + "created": 1565113839, + "updated": 1565113839, + "recoveryLevel": "Recoverable\u002bPurgeable" + } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzgyTVRjMk56VTROemtoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbd-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5a52756215888763658a8ad7e41ad35d", + "x-ms-client-request-id": "23da37b92e26357822c9ba275fd63a69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1144", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:31 GMT", + "Content-Length": "383", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "43695b69-c9dc-4503-a9d2-3b693242d941", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "76d57317-6493-4bc9-99ae-41f7ce67f45e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/663174136", - "attributes": { - "enabled": true, - "created": 1560490268, - "updated": 1560490268, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695690", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690", "attributes": { "enabled": true, - "created": 1560890246, - "updated": 1560890246, + "created": 1565113839, + "updated": 1565113839, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695691", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695691", "attributes": { "enabled": true, - "created": 1560890246, - "updated": 1560890246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/870521343", - "attributes": { - "enabled": true, - "created": 1560358731, - "updated": 1560358731, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/953315574", - "attributes": { - "enabled": true, - "created": 1560363046, - "updated": 1560363046, + "created": 1565113839, + "updated": 1565113839, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TmpjNU1URTRNelFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE3NiFNREF3TURFeklXdGxlUzg1TmpjNU1URTRNelFoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fb67356cea02621c44ca90f8806c57ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "21a1dc6f-7bda-4adc-a1af-12f6b26b8cbd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/7730695690?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbe-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ecfc8b280172aafcff4de9c2f52887f5", + "x-ms-client-request-id": "a03744e2323e50d2994f4a5e61c45c84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -442,55 +233,56 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0abf2d9f-febd-4e1c-8054-91b1ec11be0f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d7098c06-a663-469d-8114-c86f3e379ef7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/7730695690", - "deletedDate": 1560890252, - "scheduledPurgeDate": 1568666252, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f7730695690", + "deletedDate": 1565113840, + "scheduledPurgeDate": 1572889840, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695690/431e59cbda92428585e3f668f9a92c30", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695690\u002f92dc0c5b07204287b8049a2f1654a8d5", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "0g3oxkyZTg8tMSYsCK8rnauyNc3MmJsq6RNZ4izqOjA", - "y": "l4xcfqJ1S8ulmyZ4-ze9vfi-1r5N3SE32NkZ2YK8Qw4" + "x": "DtxFBANsI9j-ZWdbdYL1T1Z-ZJOOwJrYqlnGF3q3D44", + "y": "keBXcvAPi4YYCf0bh7Uam82BGB34GqduO54Zrq5CJIE" }, "attributes": { "enabled": true, - "created": 1560890246, - "updated": 1560890246, + "created": 1565113839, + "updated": 1565113839, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/7730695691?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695691?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fbf-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c2f954732a4577bc58ef15bd856b06f9", + "x-ms-client-request-id": "4fd463c0804d6cff0f46b266f8ac26be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -498,112 +290,114 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38dc5890-ba1f-466a-bed8-eb85063b32e8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d9185e49-f565-4221-b0ec-f9f7eca62af9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/7730695691", - "deletedDate": 1560890252, - "scheduledPurgeDate": 1568666252, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f7730695691", + "deletedDate": 1565113840, + "scheduledPurgeDate": 1572889840, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/7730695691/b0c85bb3f372459784a846ffff555244", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f7730695691\u002fe2dcdd4b72064496b1591d114f793c7e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "D2IIzmJyQuEJE-34s__Ocnnt8VbwV0KIkOHGox80Q0g", - "y": "fmiC1kRyTGBfsLy0c7H44uXVp_26BF429xrVln56r_Y" + "x": "TNLFyfYjf6nuWvspn2ioftAw2AUlTT19myut8-V_nLk", + "y": "Eruwz6gDno5r5Lij6IHKheU8Gzn4HD0soN-3iNSk5-M" }, "attributes": { "enabled": true, - "created": 1560890246, - "updated": 1560890246, + "created": 1565113839, + "updated": 1565113839, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/7730695690?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f7730695690?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fc5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c6f08d0f66996d34576525ec19a290d9", + "x-ms-client-request-id": "2b859b439572fea6ce849483ec3e2594", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:37:52 GMT", + "Date": "Tue, 06 Aug 2019 17:50:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7c91253f-48bd-4a37-b7d6-940a7616a826", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7fdfd3f8-e4ec-4180-874b-477bbe3e38ca", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/7730695691?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f7730695691?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fc6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "bd8ac4e08c675c38b903a7d7b5d87284", + "x-ms-client-request-id": "578ff0462e7a8cd7698e88882e0776fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:37:52 GMT", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc733c34-d45a-4fc7-ba04-671c9c4fc1e0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39838c60-140b-4144-8472-8f65b4eb55c8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1502892751" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersions.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersions.json index 319c67a3079c..8e70dfdfc089 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersions.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersions.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/855674448/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f0d-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "206a4bd89a40ad8cb42c6f2a3d92c8b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b7ffbb30-7a10-43bb-9285-226cc40a88e0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f0d-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "206a4bd89a40ad8cb42c6f2a3d92c8b0", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bbf055eb-330f-43f7-9ee8-b9655546a002", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bf1f2115-a5e4-42a0-a23b-5a092be68738", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/855674448/b47c055c27894d70a9f034a006992519", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002ffb099391f3ed4369b43c763a30622f6e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "5UkxCTCrlgNGEbQkdk4ophT0gg2C8aY34xsoBcsw-Ls", - "y": "h-FBcFAcY6-SBKHEeyO3kRBTxCLr9uhyBkq8oyZQXCU" + "x": "892Q3Bfwywjc7-bFjwu-swCmPSnwEt5cwX-zMBfvyuM", + "y": "Y1G93PslBH62kreJ978c6Qvh0MzrYDBamn7IkNhQn5I" }, "attributes": { "enabled": true, - "created": 1560889959, - "updated": 1560889959, + "created": 1565113539, + "updated": 1565113539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/855674448/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f0e-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "41ff8d08f26e24dc2abaf84c6081f7f8", "x-ms-return-client-request-id": "true" @@ -78,50 +121,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90c70e21-2d55-42fe-8fd6-da6d1612b74e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75b45fbd-e6e7-4c28-baf7-03f2621453f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/855674448/d23e6ff603974f89830e978b8dc55a4a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fc4f923f8bae04f739c62592a24aae45a", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "CfF5cW3apfr-28oRsrBXc0YHPCzFVz72y25aOs1aNfs", - "y": "-tq39wTdFApsQL4nFb1azBCEgydw5y6LqkzFVm1sM9Y" + "x": "-HZ6iCTDWejvVaOBlCOPlMH5Kx3HkMSqQV-FVNu5pq4", + "y": "m06FN5aEoYaJrEC2DhIy-3YaNhY6RLwBXkbqgqE79Lc" }, "attributes": { "enabled": true, - "created": 1560889960, - "updated": 1560889960, + "created": 1565113539, + "updated": 1565113539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/855674448/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f0f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a5a41c7a91c9082177b0f4df58a61520", "x-ms-return-client-request-id": "true" @@ -131,37 +175,37 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "447", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cfe9d7e8-94b8-4d8a-a87e-2bdbf4e195db", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3c483184-d491-4934-a4b6-ae69d41e2d74", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/855674448/b47c055c27894d70a9f034a006992519", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fc4f923f8bae04f739c62592a24aae45a", "attributes": { "enabled": true, - "created": 1560889959, - "updated": 1560889959, + "created": 1565113539, + "updated": 1565113539, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/855674448/d23e6ff603974f89830e978b8dc55a4a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002ffb099391f3ed4369b43c763a30622f6e", "attributes": { "enabled": true, - "created": 1560889960, - "updated": 1560889960, + "created": 1565113539, + "updated": 1565113539, "recoveryLevel": "Recoverable\u002bPurgeable" } } @@ -170,15 +214,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/855674448?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f10-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7e61c6a13070e6e26f45f586a13f4c32", "x-ms-return-client-request-id": "true" @@ -188,53 +233,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a2565ab2-dd12-41f9-a623-846f819b6420", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "65916d65-9234-40b2-9d87-c73cff30985f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/855674448", - "deletedDate": 1560889960, - "scheduledPurgeDate": 1568665960, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f855674448", + "deletedDate": 1565113539, + "scheduledPurgeDate": 1572889539, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/855674448/d23e6ff603974f89830e978b8dc55a4a", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f855674448\u002fc4f923f8bae04f739c62592a24aae45a", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "CfF5cW3apfr-28oRsrBXc0YHPCzFVz72y25aOs1aNfs", - "y": "-tq39wTdFApsQL4nFb1azBCEgydw5y6LqkzFVm1sM9Y" + "x": "-HZ6iCTDWejvVaOBlCOPlMH5Kx3HkMSqQV-FVNu5pq4", + "y": "m06FN5aEoYaJrEC2DhIy-3YaNhY6RLwBXkbqgqE79Lc" }, "attributes": { "enabled": true, - "created": 1560889960, - "updated": 1560889960, + "created": 1565113539, + "updated": 1565113539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/855674448?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f855674448?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f15-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3b5a9290ec51b08da62dba35660de316", "x-ms-return-client-request-id": "true" @@ -243,24 +289,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:32:54 GMT", + "Date": "Tue, 06 Aug 2019 17:45:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cc94ef5b-41f9-4888-8291-87a2f0926d72", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "26524aa0-b0a7-4eea-8817-77d8c1c0879c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1627660882" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsAsync.json index f26f645ecf4a..d97a8814ffa0 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fc9-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "234af01aedab0dc2b81b4437859c9bce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "958a248e-1410-49f4-81bf-5b73e71a38d6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fc9-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "234af01aedab0dc2b81b4437859c9bce", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8cc54896-3825-4381-9111-6a82492a54df", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f8b1fda1-0fa9-4f02-aa2c-325804918e51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/f3256dfb39314480ac91fcd89882a30e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002f8617b72a4e06401fad6a788b934edf2e", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "MPrMRMwUDOUNf2jLptCTqzLnkAEct_TdSVfss6zS-SU", - "y": "6I7RMV8wCalqjRvq5RBB9fldCNDpjv1x94esPH4U6BQ" + "x": "QeGwBYTyknC-4eZexKoZXaAgsC4Imi0mFwiWZ7mBhxc", + "y": "cKkxrahtosMh2OaGZKgn6qyZJ9ELklcoL01lH2rRtsI" }, "attributes": { "enabled": true, - "created": 1560890273, - "updated": 1560890273, + "created": 1565113856, + "updated": 1565113856, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fca-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2f55665b422ef844a619fe71f90a39d5", "x-ms-return-client-request-id": "true" @@ -78,50 +121,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5e2d1597-c4c9-4bbf-a8eb-6a096c78dae2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2a0150f1-3169-4dbe-a183-17134ff10a4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/bf646ebf21ec4374ac5aeea6d1d035e3", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002f4baca47a441e4f3e97ea56212bae86d3", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "OYb9Ora0E5NobizS2WK-dEuR4qwHaek3wKaO4S9j3G4", - "y": "5zr-Q2u2iT5brNM_aM4gxIHai1hefEQibyuIEEF034o" + "x": "mruE9mLpl2uU4vwkvbPejW-QK4yHzzZWUUNInaCN0yQ", + "y": "l80UofpovJlLscevAbF0cOVWo-T-LqV8EmE2I_5xE24" }, "attributes": { "enabled": true, - "created": 1560890274, - "updated": 1560890274, + "created": 1565113856, + "updated": 1565113856, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fcb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "95296b570562b59c23677b98002f16a4", "x-ms-return-client-request-id": "true" @@ -131,37 +175,37 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "449", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "755b0d6d-cb77-4d51-aa7d-58d2f9fa617e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8df69e9c-fad6-4680-9d85-7a9dccd93560", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/bf646ebf21ec4374ac5aeea6d1d035e3", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002f4baca47a441e4f3e97ea56212bae86d3", "attributes": { "enabled": true, - "created": 1560890274, - "updated": 1560890274, + "created": 1565113856, + "updated": 1565113856, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/f3256dfb39314480ac91fcd89882a30e", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002f8617b72a4e06401fad6a788b934edf2e", "attributes": { "enabled": true, - "created": 1560890273, - "updated": 1560890273, + "created": 1565113856, + "updated": 1565113856, "recoveryLevel": "Recoverable\u002bPurgeable" } } @@ -170,15 +214,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1275615013?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fcc-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b6af0b941339d7f7ab517d91ef5014ae", "x-ms-return-client-request-id": "true" @@ -188,79 +233,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:37:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "166a0617-dd1a-4158-b332-cfd5b294ba89", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5d9667ff-20c6-4a2c-8fa8-b22533cbd9d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1275615013", - "deletedDate": 1560890274, - "scheduledPurgeDate": 1568666274, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1275615013", + "deletedDate": 1565113856, + "scheduledPurgeDate": 1572889856, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1275615013/bf646ebf21ec4374ac5aeea6d1d035e3", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1275615013\u002f4baca47a441e4f3e97ea56212bae86d3", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "OYb9Ora0E5NobizS2WK-dEuR4qwHaek3wKaO4S9j3G4", - "y": "5zr-Q2u2iT5brNM_aM4gxIHai1hefEQibyuIEEF034o" + "x": "mruE9mLpl2uU4vwkvbPejW-QK4yHzzZWUUNInaCN0yQ", + "y": "l80UofpovJlLscevAbF0cOVWo-T-LqV8EmE2I_5xE24" }, "attributes": { "enabled": true, - "created": 1560890274, - "updated": 1560890274, + "created": 1565113856, + "updated": 1565113856, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1275615013?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1275615013?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fa7339db66f40527284e4e0297033c43", + "x-ms-client-request-id": "80b7e9412f7b2b5f7a58beb3570e7344", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:38:09 GMT", + "Date": "Tue, 06 Aug 2019 17:51:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "67995612-a759-453d-90e2-f550785ccdbd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e254cf7e-27c1-4de1-8227-e374a62340ca", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "677979882" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExisting.json index 4ed85bacb0ea..2f2a36879f67 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/812450801/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f812450801\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f17-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "5d848b59d4181e525d6557e5fb3f18e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ac9d68d7-5b92-4398-babf-3de98edef576", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f812450801\u002fversions?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f17-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5d848b59d4181e525d6557e5fb3f18e7", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:32:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:45:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "54a1b604-e6c7-4b17-ada7-41abb8984744", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a4111f5d-575e-4393-98ea-f128b7eb0fb7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -40,7 +82,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "41402080" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExistingAsync.json index fb10db755bf3..b4ac4ba0422d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/GetKeysVersionsNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1065774450/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1065774450\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd4-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "61a8c7a364e7e5636a1cd22d4d56676d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7ec6c90a-4ee1-4d85-b15f-f0fadabba7a1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1065774450\u002fversions?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fd4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "61a8c7a364e7e5636a1cd22d4d56676d", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4db5d25a-1e0a-424a-b39d-71e1399950a1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5b7f1dde-2e67-4c70-86a2-85bbef1f43e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -40,7 +82,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1194004844" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKey.json index 981419534458..14cbc814fcdd 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/617675879/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f21-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "4bbef4aac8bc875bd417d9afc41b659a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7e17fa4e-1528-4a50-a963-f4d0d38b6d25", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f21-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4bbef4aac8bc875bd417d9afc41b659a", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:11 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7369c2ee-320c-4265-ae91-22f6c821cc52", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3f22b38d-350f-4969-8db4-3908d4038161", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/617675879/ad624d94710f4e9f8486de1766430063", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fd357fd5102e44565bc78daeb9e0226ab", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yWHl-wcXn1tBwJD5cal1U7_oqI40vI_AWnYex6VlBB4", - "y": "wJzH8cXB7iLSP33wzvgtLLqat34V22lS2_fHpW83HJU" + "x": "7ljU_165roU_mt6i83hirai__OmjJdMiz9tjdCGawpI", + "y": "08h-qp_hxgr-wxuPsX7EL2_MQq-YAbOQLVvhraz4mjM" }, "attributes": { "enabled": true, - "created": 1560889992, - "updated": 1560889992, + "created": 1565113572, + "updated": 1565113572, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/617675879?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f22-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "46877b6209ac4e26bb96a3ac0675db9b", "x-ms-return-client-request-id": "true" @@ -75,55 +118,56 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:11 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a4fd337f-9ff0-4b00-9447-5f554fae470e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ebea4dfc-a9f0-444f-b906-16a455c4ca46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/617675879", - "deletedDate": 1560889992, - "scheduledPurgeDate": 1568665992, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f617675879", + "deletedDate": 1565113572, + "scheduledPurgeDate": 1572889572, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/617675879/ad624d94710f4e9f8486de1766430063", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fd357fd5102e44565bc78daeb9e0226ab", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yWHl-wcXn1tBwJD5cal1U7_oqI40vI_AWnYex6VlBB4", - "y": "wJzH8cXB7iLSP33wzvgtLLqat34V22lS2_fHpW83HJU" + "x": "7ljU_165roU_mt6i83hirai__OmjJdMiz9tjdCGawpI", + "y": "08h-qp_hxgr-wxuPsX7EL2_MQq-YAbOQLVvhraz4mjM" }, "attributes": { "enabled": true, - "created": 1560889992, - "updated": 1560889992, + "created": 1565113572, + "updated": 1565113572, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/617675879/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f28-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c3987a867be819f90b89ea7a9315707b", + "x-ms-client-request-id": "0e5592223f5e275cef618dabed470362", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -131,18 +175,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2799a33d-33c0-4aaa-b93d-415817240a08", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "68d55be9-f19f-4a02-acc2-a15a2b2312a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -153,17 +197,18 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/617675879/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f617675879\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f29-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0e5592223f5e275cef618dabed470362", + "x-ms-client-request-id": "b51f0a4389ba54141c36367829d3e0a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -171,52 +216,53 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5888974b-4a7a-41b2-b18e-fc3c5b17eac2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "624fa0a8-bd9a-4a91-ab0f-a4725914e6d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/617675879/ad624d94710f4e9f8486de1766430063", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fd357fd5102e44565bc78daeb9e0226ab", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yWHl-wcXn1tBwJD5cal1U7_oqI40vI_AWnYex6VlBB4", - "y": "wJzH8cXB7iLSP33wzvgtLLqat34V22lS2_fHpW83HJU" + "x": "7ljU_165roU_mt6i83hirai__OmjJdMiz9tjdCGawpI", + "y": "08h-qp_hxgr-wxuPsX7EL2_MQq-YAbOQLVvhraz4mjM" }, "attributes": { "enabled": true, - "created": 1560889992, - "updated": 1560889992, + "created": 1565113572, + "updated": 1565113572, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/617675879/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f2e-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a1f2720b589cbbb218b5d72190403e39", + "x-ms-client-request-id": "0905b8711719d8ca4875e51e2376e3f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,52 +270,53 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "81ea4898-07d2-4bb7-aac3-608eb71cbdea", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2b8ee041-b0d9-41db-b55b-b9f53f5da6bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/617675879/ad624d94710f4e9f8486de1766430063", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fd357fd5102e44565bc78daeb9e0226ab", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yWHl-wcXn1tBwJD5cal1U7_oqI40vI_AWnYex6VlBB4", - "y": "wJzH8cXB7iLSP33wzvgtLLqat34V22lS2_fHpW83HJU" + "x": "7ljU_165roU_mt6i83hirai__OmjJdMiz9tjdCGawpI", + "y": "08h-qp_hxgr-wxuPsX7EL2_MQq-YAbOQLVvhraz4mjM" }, "attributes": { "enabled": true, - "created": 1560889992, - "updated": 1560889992, + "created": 1565113572, + "updated": 1565113572, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/617675879?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f2f-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0905b8711719d8ca4875e51e2376e3f0", + "x-ms-client-request-id": "961c229a5df1287e3179fb43d61d3162", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -277,79 +324,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:46:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a340a814-dd0e-4a19-b4e8-87b9d22815b2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a506c434-ca97-470c-9656-8afe81361974", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/617675879", - "deletedDate": 1560890022, - "scheduledPurgeDate": 1568666022, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f617675879", + "deletedDate": 1565113607, + "scheduledPurgeDate": 1572889607, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/617675879/ad624d94710f4e9f8486de1766430063", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f617675879\u002fd357fd5102e44565bc78daeb9e0226ab", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yWHl-wcXn1tBwJD5cal1U7_oqI40vI_AWnYex6VlBB4", - "y": "wJzH8cXB7iLSP33wzvgtLLqat34V22lS2_fHpW83HJU" + "x": "7ljU_165roU_mt6i83hirai__OmjJdMiz9tjdCGawpI", + "y": "08h-qp_hxgr-wxuPsX7EL2_MQq-YAbOQLVvhraz4mjM" }, "attributes": { "enabled": true, - "created": 1560889992, - "updated": 1560889992, + "created": 1565113572, + "updated": 1565113572, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/617675879?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f617675879?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f34-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ef7159e2c396f13e16c5c4ab8514d720", + "x-ms-client-request-id": "efe42e18d110ec057e4900fbb97010e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:33:57 GMT", + "Date": "Tue, 06 Aug 2019 17:47:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "19d66687-03dc-4424-b9f5-6e2ce2ec4abe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e93e854e-1707-4b17-9aad-0848649c2701", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "2088491901" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyAsync.json index 19c389243e8c..701c4c041356 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/947854563/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fde-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "d34886e41ae86a7962e19242bc222d26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ca9ae5b5-7c53-4139-85ea-8645a870e46a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fde-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d34886e41ae86a7962e19242bc222d26", "x-ms-return-client-request-id": "true" @@ -22,50 +64,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "957b1c47-c344-407f-b49f-1fcc99464b0a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f5c6ff59-178a-494c-b548-b36d35d2335c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/947854563/02f0d6d9e32948fd9a92867f18dfd523", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcb4ebf7a7c8c40c088f619f3c4dec40f", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "eFuyYcRvpvwQn7Jud9Rdv-BhtyCyCoEbv8uVJ10uurg", - "y": "2vl-5EaBaX6Mq91jqL3vOzvBAicJMNqQ3cX020z19ls" + "x": "RiYagI63iINCTu_lO1U2K3JmWbodZH4ERZufLU0d-7c", + "y": "l5hqm3WEU7aqPiBNxezT_GFJQ2Nz-U0uPCKaCsmledc" }, "attributes": { "enabled": true, - "created": 1560890306, - "updated": 1560890306, + "created": 1565113893, + "updated": 1565113893, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/947854563?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fdf-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "92d20a58380f12942c2282e4c16fbf9c", "x-ms-return-client-request-id": "true" @@ -75,55 +118,56 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "84a747f5-6baf-4ed2-abd9-02fe40c1f0b1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "14d29117-ebd5-4c59-8646-b82d2703a40e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/947854563", - "deletedDate": 1560890306, - "scheduledPurgeDate": 1568666306, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f947854563", + "deletedDate": 1565113894, + "scheduledPurgeDate": 1572889894, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/947854563/02f0d6d9e32948fd9a92867f18dfd523", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcb4ebf7a7c8c40c088f619f3c4dec40f", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "eFuyYcRvpvwQn7Jud9Rdv-BhtyCyCoEbv8uVJ10uurg", - "y": "2vl-5EaBaX6Mq91jqL3vOzvBAicJMNqQ3cX020z19ls" + "x": "RiYagI63iINCTu_lO1U2K3JmWbodZH4ERZufLU0d-7c", + "y": "l5hqm3WEU7aqPiBNxezT_GFJQ2Nz-U0uPCKaCsmledc" }, "attributes": { "enabled": true, - "created": 1560890306, - "updated": 1560890306, + "created": 1565113893, + "updated": 1565113893, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/947854563/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fe4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d53ce71bb080717b39ece4f82a4283bc", + "x-ms-client-request-id": "b9879c1458c35010f3670e6815820206", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -131,18 +175,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:36 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f58a7a35-56c3-4fb6-bc86-54794eb50de2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f3cafde0-4f62-4afc-b38f-d4e93baa9f54", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -153,17 +197,18 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/947854563/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f947854563\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fe5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b9879c1458c35010f3670e6815820206", + "x-ms-client-request-id": "afaab7d3d35971727a08739e73ff5dbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -171,50 +216,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:36 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:51:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fc20e9d6-963e-4dc5-944a-055b546ad020", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "58e75913-149e-4408-93f3-700e9ca4d485", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/947854563/02f0d6d9e32948fd9a92867f18dfd523", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcb4ebf7a7c8c40c088f619f3c4dec40f", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "eFuyYcRvpvwQn7Jud9Rdv-BhtyCyCoEbv8uVJ10uurg", - "y": "2vl-5EaBaX6Mq91jqL3vOzvBAicJMNqQ3cX020z19ls" + "x": "RiYagI63iINCTu_lO1U2K3JmWbodZH4ERZufLU0d-7c", + "y": "l5hqm3WEU7aqPiBNxezT_GFJQ2Nz-U0uPCKaCsmledc" }, "attributes": { "enabled": true, - "created": 1560890306, - "updated": 1560890306, + "created": 1565113893, + "updated": 1565113893, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/947854563/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fea-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "530eed0fcbdff2713cf9e6affaf650d0", "x-ms-return-client-request-id": "true" @@ -224,50 +270,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "643e9505-859c-497f-918f-47bd76891fa5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6a1a81aa-3088-481e-8474-7cac62962e5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/947854563/02f0d6d9e32948fd9a92867f18dfd523", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcb4ebf7a7c8c40c088f619f3c4dec40f", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "eFuyYcRvpvwQn7Jud9Rdv-BhtyCyCoEbv8uVJ10uurg", - "y": "2vl-5EaBaX6Mq91jqL3vOzvBAicJMNqQ3cX020z19ls" + "x": "RiYagI63iINCTu_lO1U2K3JmWbodZH4ERZufLU0d-7c", + "y": "l5hqm3WEU7aqPiBNxezT_GFJQ2Nz-U0uPCKaCsmledc" }, "attributes": { "enabled": true, - "created": 1560890306, - "updated": 1560890306, + "created": 1565113893, + "updated": 1565113893, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/947854563?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06feb-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "280ed74647bd1f1927d16f4a1552c21a", "x-ms-return-client-request-id": "true" @@ -277,53 +324,54 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "504", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:38:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c21c52c5-e252-4e83-94a4-8e68e7b042a6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5142a376-ba40-473b-a693-553d0189b3b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/947854563", - "deletedDate": 1560890336, - "scheduledPurgeDate": 1568666336, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f947854563", + "deletedDate": 1565113924, + "scheduledPurgeDate": 1572889924, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/947854563/02f0d6d9e32948fd9a92867f18dfd523", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f947854563\u002fcb4ebf7a7c8c40c088f619f3c4dec40f", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "eFuyYcRvpvwQn7Jud9Rdv-BhtyCyCoEbv8uVJ10uurg", - "y": "2vl-5EaBaX6Mq91jqL3vOzvBAicJMNqQ3cX020z19ls" + "x": "RiYagI63iINCTu_lO1U2K3JmWbodZH4ERZufLU0d-7c", + "y": "l5hqm3WEU7aqPiBNxezT_GFJQ2Nz-U0uPCKaCsmledc" }, "attributes": { "enabled": true, - "created": 1560890306, - "updated": 1560890306, + "created": 1565113893, + "updated": 1565113893, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/947854563?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f947854563?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff0-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "38aa70e4e0d25d928c3c4234d8acda9b", "x-ms-return-client-request-id": "true" @@ -332,24 +380,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:39:12 GMT", + "Date": "Tue, 06 Aug 2019 17:52:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "369e2c81-a1f8-4933-8762-96be2af88b48", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d0eec5fd-9a76-410b-9802-ab11902060ae", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1592873077" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExisting.json index 98bf377c6556..355c8a5b1fcd 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/532119641/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f532119641\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f36-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "e071dc2c0268cc77f1df62072a643c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c434e5c8-1546-4d0b-ae85-507ec55f2e53", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f532119641\u002frecover?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f36-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e071dc2c0268cc77f1df62072a643c95", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:58 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b14c132f-1e23-4fd2-9716-bd5a070604cf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7b89cf15-88d0-4334-9fa7-f882c7a85651", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1864052279" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExistingAsync.json index 3e794530e979..c3245767b89f 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RecoverDeletedKeyNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/924949630/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f924949630\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff2-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "41e5d70f64c61d233f04218fff15fab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fd067cea-7edb-4ae8-ae32-b184e39e4e2f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f924949630\u002frecover?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff2-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "41e5d70f64c61d233f04218fff15fab2", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:12 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "711da92d-2530-4cda-a2e4-477911bde87e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2dab6b6f-7720-4225-bd0e-1a6c28dd8f34", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "688242518" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExisting.json index 8b8c38e042b3..d74b9257509d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExisting.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys//restore?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f\u002frestore?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f37-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "54d44fcc4353d1e87ca80fd53313d463", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75d8d776-078b-46e8-88b1-61976335f1bc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f\u002frestore?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "28", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f37-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "54d44fcc4353d1e87ca80fd53313d463", "x-ms-return-client-request-id": "true" @@ -22,18 +64,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "78", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:58 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3cdba016-507f-4010-8756-9404ac43f592", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6d2fbffa-f43d-49cf-a78f-2236c94b2389", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -45,7 +87,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1936457676" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExistingAsync.json index 062d16bd518a..842c8d73ac34 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/RestoreKeyNonExistingAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys//restore?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f\u002frestore?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff3-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "468af6378aa1a9b28d758e98faa7d3ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ce362551-c7dc-42d3-93c9-f2139f2b55d7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f\u002frestore?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "28", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff3-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "468af6378aa1a9b28d758e98faa7d3ba", "x-ms-return-client-request-id": "true" @@ -22,18 +64,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "78", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:12 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f16c5207-026e-4c2d-abb3-98275b5d82a5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "49864b97-5375-4ccf-b930-b0d599bdb180", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -45,7 +87,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1797506922" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabled.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabled.json index ca0fb80f501e..c71ce649f5c8 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabled.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabled.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f38-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "a0d86073642a9262334c142bb682ba26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a3ce283e-6bb2-4d5f-955c-fcce8d13f444", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f38-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a0d86073642a9262334c142bb682ba26", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:59 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a60685a2-b665-4e16-a205-38795221f3aa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1878eac1-6303-4f26-820e-52027a3bf7f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/3e8da18ebb5f41588dc7306b416e7280", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f045c16048d284bca940d4070877549cc", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yMmRPv8qm0ir9bZ0UOuG9iyiDZgMR_ZtLs7nvbPbAh8", - "y": "IRELQ_WhnL1nvrYcMSdKe3s9R0jPygrM_XU-MjsWhgw" + "x": "D76qT_sXiVMAH3bB-Mobl10-l-8e3pdKA61S_rFnUns", + "y": "v11DkeQjbwKv36ebT6j31h8L_ODYQ2gGyVDcs756yxg" }, "attributes": { "enabled": true, - "created": 1560890039, - "updated": 1560890039, + "created": 1565113624, + "updated": 1565113624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/3e8da18ebb5f41588dc7306b416e7280?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f045c16048d284bca940d4070877549cc?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "60", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f39-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3c98c1c669d429d5f7a670124aa5e574", "x-ms-return-client-request-id": "true" @@ -84,50 +127,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:59 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0a4d3183-d77d-41b6-8bd3-fa29a14652e0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6e5372a1-5a1c-4165-bec8-e4bc2355af9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/3e8da18ebb5f41588dc7306b416e7280", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f045c16048d284bca940d4070877549cc", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yMmRPv8qm0ir9bZ0UOuG9iyiDZgMR_ZtLs7nvbPbAh8", - "y": "IRELQ_WhnL1nvrYcMSdKe3s9R0jPygrM_XU-MjsWhgw" + "x": "D76qT_sXiVMAH3bB-Mobl10-l-8e3pdKA61S_rFnUns", + "y": "v11DkeQjbwKv36ebT6j31h8L_ODYQ2gGyVDcs756yxg" }, "attributes": { "enabled": false, - "created": 1560890039, - "updated": 1560890039, + "created": 1565113624, + "updated": 1565113624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f3a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "995392361c3e723bec18c34c517395f1", "x-ms-return-client-request-id": "true" @@ -137,50 +181,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "372", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:59 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9173b333-e656-4120-82c5-6daec7adc4b6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ae82da72-6c78-4890-845c-5c82115d6d92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/3e8da18ebb5f41588dc7306b416e7280", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f045c16048d284bca940d4070877549cc", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yMmRPv8qm0ir9bZ0UOuG9iyiDZgMR_ZtLs7nvbPbAh8", - "y": "IRELQ_WhnL1nvrYcMSdKe3s9R0jPygrM_XU-MjsWhgw" + "x": "D76qT_sXiVMAH3bB-Mobl10-l-8e3pdKA61S_rFnUns", + "y": "v11DkeQjbwKv36ebT6j31h8L_ODYQ2gGyVDcs756yxg" }, "attributes": { "enabled": false, - "created": 1560890039, - "updated": 1560890039, + "created": 1565113624, + "updated": 1565113624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/1881246728?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f3b-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4f3b395026ad0a348aaea984f34f478d", "x-ms-return-client-request-id": "true" @@ -190,79 +235,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "507", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:33:59 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f631944e-160b-40e6-b4b7-79187614cd48", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b218f2fd-7a92-4345-9769-4c58040429ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1881246728", - "deletedDate": 1560890039, - "scheduledPurgeDate": 1568666039, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1881246728", + "deletedDate": 1565113624, + "scheduledPurgeDate": 1572889624, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/1881246728/3e8da18ebb5f41588dc7306b416e7280", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f1881246728\u002f045c16048d284bca940d4070877549cc", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "yMmRPv8qm0ir9bZ0UOuG9iyiDZgMR_ZtLs7nvbPbAh8", - "y": "IRELQ_WhnL1nvrYcMSdKe3s9R0jPygrM_XU-MjsWhgw" + "x": "D76qT_sXiVMAH3bB-Mobl10-l-8e3pdKA61S_rFnUns", + "y": "v11DkeQjbwKv36ebT6j31h8L_ODYQ2gGyVDcs756yxg" }, "attributes": { "enabled": false, - "created": 1560890039, - "updated": 1560890039, + "created": 1565113624, + "updated": 1565113624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/1881246728?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f1881246728?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f41-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "70ebb3a727a49f04bb93bfd8cc4039e4", + "x-ms-client-request-id": "4bb90ce50843990f1214d89aabdc1bfa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:34:14 GMT", + "Date": "Tue, 06 Aug 2019 17:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3d620f9f-f5b0-4a77-9f71-c6c09b158f21", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "574bd9cd-7147-468f-aaa6-cf7f3e318066", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "227586740" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabledAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabledAsync.json index 5c1226d46f4c..b1d5ae10f89d 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabledAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateEnabledAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/861166131/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff4-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "f09a13c6f9e52af4ba1aa2bf6f65bc05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5816f563-8b05-4f43-8006-d895ac9a0d8c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff4-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f09a13c6f9e52af4ba1aa2bf6f65bc05", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:13 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "090181c6-d25e-4d5d-9989-030ae686d90d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5cf2ec02-2c33-4982-bcc8-90320c1ddf21", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/861166131/ad8fe8ee597b4035b84681f06faeee94", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f8058c78361d441e29c11aba702249095", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "K0S9ms2CM4FRdsyJSVjbSlqH3WkYVO-zmRmuaWUVuTI", - "y": "C9VssugZTu5a3Mqo4tq63Wd1n931EQW4p7vbnN8k15s" + "x": "dAU23_ZD_i0FLrO_ZrqNlBud0Id7f4Tlu_EF_DCHzTk", + "y": "2h9Ek36FYsipUpwCgfzhP1T5TkV7XeM1Q7MXW5FLNes" }, "attributes": { "enabled": true, - "created": 1560890353, - "updated": 1560890353, + "created": 1565113941, + "updated": 1565113941, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/861166131/ad8fe8ee597b4035b84681f06faeee94?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f8058c78361d441e29c11aba702249095?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "60", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff5-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c094ae1b33bfa0665016b1d0c8319ab5", "x-ms-return-client-request-id": "true" @@ -84,50 +127,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:13 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "03771f3a-c65c-4f93-976b-2516f8842dcf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cc4cddea-76b9-467a-a093-afab8c57dc5e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/861166131/ad8fe8ee597b4035b84681f06faeee94", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f8058c78361d441e29c11aba702249095", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "K0S9ms2CM4FRdsyJSVjbSlqH3WkYVO-zmRmuaWUVuTI", - "y": "C9VssugZTu5a3Mqo4tq63Wd1n931EQW4p7vbnN8k15s" + "x": "dAU23_ZD_i0FLrO_ZrqNlBud0Id7f4Tlu_EF_DCHzTk", + "y": "2h9Ek36FYsipUpwCgfzhP1T5TkV7XeM1Q7MXW5FLNes" }, "attributes": { "enabled": false, - "created": 1560890353, - "updated": 1560890353, + "created": 1565113941, + "updated": 1565113941, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/861166131/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff6-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a871658ae5ccafb341cc2dca3c33bf7f", "x-ms-return-client-request-id": "true" @@ -137,50 +181,51 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "371", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:13 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6c6abc9-0edd-4a70-a6d4-06b2b0b14cf3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bf5512a4-6e32-4f6b-8f4d-e62b1ebeed6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/861166131/ad8fe8ee597b4035b84681f06faeee94", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f8058c78361d441e29c11aba702249095", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "K0S9ms2CM4FRdsyJSVjbSlqH3WkYVO-zmRmuaWUVuTI", - "y": "C9VssugZTu5a3Mqo4tq63Wd1n931EQW4p7vbnN8k15s" + "x": "dAU23_ZD_i0FLrO_ZrqNlBud0Id7f4Tlu_EF_DCHzTk", + "y": "2h9Ek36FYsipUpwCgfzhP1T5TkV7XeM1Q7MXW5FLNes" }, "attributes": { "enabled": false, - "created": 1560890353, - "updated": 1560890353, + "created": 1565113941, + "updated": 1565113941, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/861166131?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ff7-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ebee597c68159373adf9a0ce47236188", "x-ms-return-client-request-id": "true" @@ -190,79 +235,80 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "505", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:13 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cafb61b2-3de8-480c-ba58-8df74413d13e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a40961a7-ffcf-4879-aaaf-ad4475486461", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/861166131", - "deletedDate": 1560890353, - "scheduledPurgeDate": 1568666353, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f861166131", + "deletedDate": 1565113941, + "scheduledPurgeDate": 1572889941, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/861166131/ad8fe8ee597b4035b84681f06faeee94", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f861166131\u002f8058c78361d441e29c11aba702249095", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "K0S9ms2CM4FRdsyJSVjbSlqH3WkYVO-zmRmuaWUVuTI", - "y": "C9VssugZTu5a3Mqo4tq63Wd1n931EQW4p7vbnN8k15s" + "x": "dAU23_ZD_i0FLrO_ZrqNlBud0Id7f4Tlu_EF_DCHzTk", + "y": "2h9Ek36FYsipUpwCgfzhP1T5TkV7XeM1Q7MXW5FLNes" }, "attributes": { "enabled": false, - "created": 1560890353, - "updated": 1560890353, + "created": 1565113941, + "updated": 1565113941, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/861166131?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f861166131?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ffc-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "15768494f3cfd1454d1317151765f116", + "x-ms-client-request-id": "6088617c1552a21da6eb4d8bbf6e3872", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:39:23 GMT", + "Date": "Tue, 06 Aug 2019 17:52:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1dbb4428-12e6-471d-a135-bd3045883ec2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b662fce8-cb36-42fc-9517-23c34e1e7f14", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1687623275" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKey.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKey.json index 8bf5c895b687..5965ef0e71d9 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKey.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKey.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/29338432/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f43-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "8f020e7ead149dfc0b271bf68075601b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "621b01b2-cd8e-47b4-8820-c6994d190cb7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f43-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8f020e7ead149dfc0b271bf68075601b", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "369", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:14 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ef51d58-3423-43cb-b110-3893a7c0636e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "06a13d9d-7320-450c-bb27-e1f7d83cb6a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/29338432/f18ea22070534b7eaf6f4e88ba374d84", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002f5a7884a4427047f88723d42c2d8f287c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ejsXrnz0Md1hA4MrKuvA4ms7_2GuDM9cE5Ufl9WNh2U", - "y": "yWECaA9VG-UCqna15b-fcS2wB3yqIwPQ2PsbJigjpbc" + "x": "FdGNer_wxAXvebmWuUOqaLqpZB4bEQcYI6rlwUxpz0g", + "y": "2YF7DN9E-kW4QkYK5XMakZNsNO6yyRE6EE5mjWw90aE" }, "attributes": { "enabled": true, - "created": 1560890055, - "updated": 1560890055, + "created": 1565113645, + "updated": 1565113645, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/29338432/f18ea22070534b7eaf6f4e88ba374d84?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002f5a7884a4427047f88723d42c2d8f287c?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "76", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f44-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8a58289b3949fdf0b798f44b9e08990a", "x-ms-return-client-request-id": "true" @@ -74,7 +117,7 @@ "RequestBody": { "attributes": { "enabled": true, - "exp": 1560890055 + "exp": 1565113645 }, "key_ops": [ "sign", @@ -85,51 +128,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "386", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:14 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c53d4d2f-f45f-4a11-ad24-61cd6fac5ae8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8acb27ec-e09d-4f27-a186-e5f11a477125", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/29338432/f18ea22070534b7eaf6f4e88ba374d84", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002f5a7884a4427047f88723d42c2d8f287c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ejsXrnz0Md1hA4MrKuvA4ms7_2GuDM9cE5Ufl9WNh2U", - "y": "yWECaA9VG-UCqna15b-fcS2wB3yqIwPQ2PsbJigjpbc" + "x": "FdGNer_wxAXvebmWuUOqaLqpZB4bEQcYI6rlwUxpz0g", + "y": "2YF7DN9E-kW4QkYK5XMakZNsNO6yyRE6EE5mjWw90aE" }, "attributes": { "enabled": true, - "exp": 1560890055, - "created": 1560890055, - "updated": 1560890055, + "exp": 1565113645, + "created": 1565113645, + "updated": 1565113645, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/29338432?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f45-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d0c0813632bdf8dd92843784657b9086", "x-ms-return-client-request-id": "true" @@ -139,54 +183,55 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "519", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:34:14 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c999b60e-046d-4e58-9c78-34df4e4abc3f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "319f871c-4ce6-4250-b389-17f03ab1a7d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/29338432", - "deletedDate": 1560890055, - "scheduledPurgeDate": 1568666055, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f29338432", + "deletedDate": 1565113646, + "scheduledPurgeDate": 1572889646, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/29338432/f18ea22070534b7eaf6f4e88ba374d84", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f29338432\u002f5a7884a4427047f88723d42c2d8f287c", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "ejsXrnz0Md1hA4MrKuvA4ms7_2GuDM9cE5Ufl9WNh2U", - "y": "yWECaA9VG-UCqna15b-fcS2wB3yqIwPQ2PsbJigjpbc" + "x": "FdGNer_wxAXvebmWuUOqaLqpZB4bEQcYI6rlwUxpz0g", + "y": "2YF7DN9E-kW4QkYK5XMakZNsNO6yyRE6EE5mjWw90aE" }, "attributes": { "enabled": true, - "exp": 1560890055, - "created": 1560890055, - "updated": 1560890055, + "exp": 1565113645, + "created": 1565113645, + "updated": 1565113645, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/29338432?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f29338432?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06f4a-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4b729c6ca369a12f9a2f7339dda60ee7", "x-ms-return-client-request-id": "true" @@ -195,24 +240,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:34:30 GMT", + "Date": "Tue, 06 Aug 2019 17:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a131373f-9774-4aff-9b7a-29f298e03616", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2bb8c374-1305-477f-8a69-a3200ee6fc18", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "219688752" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKeyAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKeyAsync.json index 0af807172908..10ae5dee6eb3 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKeyAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/tests/SessionRecords/KeyClientLiveTests/UpdateKeyAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/660108455/create?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002fcreate?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ffe-44aa1cc26dede9d6.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "c5f4d33f4425cdc67c478d67625a4373", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "488af1cb-a7ec-4455-8ea9-ba22e3c136e6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002fcreate?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "12", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06ffe-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c5f4d33f4425cdc67c478d67625a4373", "x-ms-return-client-request-id": "true" @@ -22,51 +64,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b691e10-e932-4712-bcfd-bf651b4a9c23", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9c2856d5-77d1-435e-9387-eb4a1d14bc3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/660108455/7e2d574200c44aa08ac1651d7c25598d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002f267260da3dd04388b025eb4e892e8d42", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Og9YkgH552oCGHiHIOm9Girscwj6_EnjckvnboG7IEY", - "y": "Fnjl3uF2u2uON1oiHwowq1bYc8VMGyQgEUusui4MR0w" + "x": "MZubhFIdEpflv-Nud3Yni0vRLrBVHLQmjl3cIcHzpMA", + "y": "_Kh0-L-Af_mtW-GzLc3GUkCgjAOVEiyTnW0gzfsY6vA" }, "attributes": { "enabled": true, - "created": 1560890364, - "updated": 1560890364, + "created": 1565113957, + "updated": 1565113957, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/660108455/7e2d574200c44aa08ac1651d7c25598d?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002f267260da3dd04388b025eb4e892e8d42?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "76", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a06fff-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c6d75f56f48b2b139c745cf119ee55c9", "x-ms-return-client-request-id": "true" @@ -74,7 +117,7 @@ "RequestBody": { "attributes": { "enabled": true, - "exp": 1560890364 + "exp": 1565113957 }, "key_ops": [ "sign", @@ -85,51 +128,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "387", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9daa8937-3144-4f51-be8b-820142847074", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e2e43c5b-9f3d-4bb7-9cbe-be5f085343ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/660108455/7e2d574200c44aa08ac1651d7c25598d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002f267260da3dd04388b025eb4e892e8d42", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Og9YkgH552oCGHiHIOm9Girscwj6_EnjckvnboG7IEY", - "y": "Fnjl3uF2u2uON1oiHwowq1bYc8VMGyQgEUusui4MR0w" + "x": "MZubhFIdEpflv-Nud3Yni0vRLrBVHLQmjl3cIcHzpMA", + "y": "_Kh0-L-Af_mtW-GzLc3GUkCgjAOVEiyTnW0gzfsY6vA" }, "attributes": { "enabled": true, - "exp": 1560890364, - "created": 1560890364, - "updated": 1560890364, + "exp": 1565113957, + "created": 1565113957, + "updated": 1565113957, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/keys/660108455?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a07000-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "06e409525936052aac5381d013ca6c41", "x-ms-return-client-request-id": "true" @@ -139,80 +183,81 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "521", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 20:39:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:52:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6ed5283-3eef-44f9-883b-238b89090828", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6d299b2e-0da8-47f1-8552-2a1625c1f0ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedkeys/660108455", - "deletedDate": 1560890364, - "scheduledPurgeDate": 1568666364, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f660108455", + "deletedDate": 1565113957, + "scheduledPurgeDate": 1572889957, "key": { - "kid": "https://pakrym-keyvault.vault.azure.net/keys/660108455/7e2d574200c44aa08ac1651d7c25598d", + "kid": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fkeys\u002f660108455\u002f267260da3dd04388b025eb4e892e8d42", "kty": "EC", "key_ops": [ "sign", "verify" ], "crv": "P-256", - "x": "Og9YkgH552oCGHiHIOm9Girscwj6_EnjckvnboG7IEY", - "y": "Fnjl3uF2u2uON1oiHwowq1bYc8VMGyQgEUusui4MR0w" + "x": "MZubhFIdEpflv-Nud3Yni0vRLrBVHLQmjl3cIcHzpMA", + "y": "_Kh0-L-Af_mtW-GzLc3GUkCgjAOVEiyTnW0gzfsY6vA" }, "attributes": { "enabled": true, - "exp": 1560890364, - "created": 1560890364, - "updated": 1560890364, + "exp": 1565113957, + "created": 1565113957, + "updated": 1565113957, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedkeys/660108455?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedkeys\u002f660108455?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|24a07006-44aa1cc26dede9d6.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Keys\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cbaa57b0ee0d597e93d069ddf6cecbbc", + "x-ms-client-request-id": "809742b4c965f21b50daae2d0f6a4e0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 20:39:39 GMT", + "Date": "Tue, 06 Aug 2019 17:52:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "178c82b9-8b70-4283-add4-b3fb60f401eb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "76ce1bb6-57a9-4739-b87a-c41585cfd7a5", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "2023801437" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/Readme.md b/sdk/keyvault/Azure.Security.KeyVault.Secrets/README.md similarity index 100% rename from sdk/keyvault/Azure.Security.KeyVault.Secrets/Readme.md rename to sdk/keyvault/Azure.Security.KeyVault.Secrets/README.md diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj index 980ad852d91f..2c99c45f440a 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/Azure.Security.KeyVault.Secrets.csproj @@ -27,5 +27,6 @@ + diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/SecretClient.cs b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/SecretClient.cs index d72498356135..3f1651245a8f 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/SecretClient.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/src/SecretClient.cs @@ -59,7 +59,7 @@ public SecretClient(Uri vaultUri, TokenCredential credential, SecretClientOption _pipeline = HttpPipelineBuilder.Build(options, bufferResponse: true, - new BearerTokenAuthenticationPolicy(credential, "https://vault.azure.net/.default")); + new ChallengeBasedAuthenticationPolicy(credential)); } /// diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SecretClientLiveTests.cs b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SecretClientLiveTests.cs index e8dab1e68e90..b390e401bfdf 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SecretClientLiveTests.cs +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SecretClientLiveTests.cs @@ -22,6 +22,19 @@ public SecretClientLiveTests(bool isAsync) : base(isAsync) { } + [SetUp] + public void ClearChallengeCacheforRecord() + { + // in record mode we reset the challenge cache before each test so that the challenge call + // is always made. This allows tests to be replayed independently and in any order + if(this.Mode == RecordedTestMode.Record || this.Mode == RecordedTestMode.Playback) + { + this.Client = this.GetClient(); + + ChallengeBasedAuthenticationPolicy.AuthenticationChallenge.ClearCache(); + } + } + [Test] public async Task SetSecret() { diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecret.json index 5bf0e27e259e..6f65091bb6b3 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/791790561?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f04-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "5ae9aeb8fe257066732abef9bbe356d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "86f0273c-e52e-48f8-b1a8-80fb1c475742", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "25", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f04-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5ae9aeb8fe257066732abef9bbe356d3", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "235", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:43 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8510aba2-7a19-4509-8453-801261e9a29b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "701a8d71-8e58-4c51-8ed2-f273d3bc8624", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "BackupRestore", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/791790561/ed056348583f40fdba86a2a126d00049", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561\u002f214d402e064b442f859d6f70f38b5a12", "attributes": { "enabled": true, - "created": 1560877003, - "updated": 1560877003, + "created": 1565114046, + "updated": 1565114046, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/791790561/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f05-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0ffd9bae4723adda8b45ab123f3012de", "x-ms-return-client-request-id": "true" @@ -65,35 +108,36 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5122", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:43 GMT", + "Content-Length": "5320", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "70f9e033-dd68-414b-9440-0fe234cbe9d4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "596e4571-6237-435b-b5bd-9733de162b26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkotSlJESGYzWi05MmNmdE1Ud1JGWVVQWEowT0RWV3NZdnRWOXp2X0hRTkprNVZyQVZoTUQ1VjhDYVVrVkh1NFdPanVaZ1ZFUGEwNWhib2hEN3NMdDBVbmQ4aS04QUdyMTZRT1lrMjl0SmdZN200dGJ6RHpKN01GSzc0YUV1dkNPcWVoWFN3M29rMWNEZENyelczUE95bk9OZTM0dTE2MVBlYTdiRURyeTBJbDlqTmRxVEZDcVBZZGpwVjZ6dEhhcE9MZ09mVE5rejVwSHhqVkwwSFo0R0U2Z2hmWEc3cnc4SXZOa2FxY0hxZk1LU1JSclVOcjJORXNlVXRuTW9BcDY1bExTdkNOR3MyaHl3RUlpWW8ta3FMTzU1V0F6Rnd4SHhNUG9meFRxYTkzVzl6cVNqWElucWFpTHBiam53VEcwSl9mUlE5TUZZSFBUVVhMYzlZRlppUS41YXdhS2M2dEZta0d5Q1FQVTBHdkd3LldPX0hOU0VmZ0paREtVTG5nSnBXcmhzbmVMd1RyMVpkVmU1YmZ5RWJFZW0xSjkwdzkwTUZ3VjZMYUR5b0hqQTBuZGlHYVJHUGZmeV9uNlZxWFZZX09OeHBScjRJWVdvVE5CUXRqQWJ6YnJKYWFGbkE2TngzY3Y3cXYzWDlCakNFSWotcGFUdzI0WE1TUTlCUkZiMGE3NzU0b00ydUN6azZDbUlZdzE3cmptUWpyeFN5X3JqblczX2tXZ0hudktzcUJDTmI2ejNxYUlZNURadzB2enpuWTFfNVdRdU5iLTJmR25uS3JjZUFTVDRIMUFxRmRhMWVQSGFrZTlRV0hlbllFenRsTXQ4RmNwUGswSEU5NFI3MTVnU3dmRVdHRmdZTjQ1UnFCaU9zS0xDSXZIaGFwN1puRHJMZFQtRGQwN0NqY0ZqYjN1ODlGVk13MkdNQ0JvRUJwTkdXZ3F6SkZaeVRqdEl1YWZ6N2xPSmp4SVRucVQwZUFxbmxVUzdpa3ZMYllrVmg1NUxzS3ZWbzdaWUhlUU9ZVFJ6RWhIMU0zRTREbkV6Q1VtdTVtZm5tTU9ZRnRrY3czNVdUMmF6QzlocE9UUUlERHlCWFM2bkNHS3JYSDFtZzRreDV6MzZVTVBsdnJYTlZ6RV9FM25pRDczbV9rYXZOT0VhNHFqQzVoMjJBVl9JMFJrSGdtQ3lkZVowY2hfaEZEYVdSYmE0UkZ1VmMyT25FZ1JmV19EMkdoeGtmZHQ1STRFcVRjVEpTWU5PX2FWZDBNTmJhMUZnZHJDSUZJa3ItMUlxLXZ1dTNLRS1oQWViaEszWHNsM09WUWdpY1VMazZkUEsweGdhdjRaTGlySDlyRnU5Q2tXaVpmOWdGNlpURDlXLWh6X1Zmektockgta003RndESDlib2FjRGQ3QmpIdW9NWXljeS03RU9xQnRNNFhpUFNzTUhhZnAtd09odXBSN2o4dElMQjRYTnlzQzItVFBDLU1oS0NlOWtKSWE1ZklreWIwV2NFU1VrZU9uTVZFWmpuZzUySV9aZWxaRFB2SjRxMjRpZGxGenFWeERoQXVFcFY1bldyRUd0YnVzZW1UaDdveDhTeHg1R0VPcV8wZTk1S191anhlamxWeVFEVFdXQmFCUnBKMU11TmpSSS1pM3FDSTBMMGwtdm1SVGJxbW5WNXd0STBVZ1RVWTZaQUZ4aWNvNDBQbVlneUw0VngyOTIzRGxnNDNWWWpCNFEtaFFtUzN6b0lrUEp2NkdFQ0M3REZDSWpmU2pDdTRqd1YwTDF3eEprZVRKcS0td2x0WF9nTDN6dWR6WFZwejJRZmxrRHh5WHRMMzZFbkNaZEFLWXN0R0tscnhpVkFuMHc1MHN2Vm84bDFnQWNtNWw5VnZyZ1hLbVNNeXhuRHZ2V3NRNDBnR050MHNCa3dVNUpZLUt4Rko5VENnV05Ca3JLMVdfbS1WdTA3UkJubXIzRFZpQmNTU1BGWFh3MnBlS1UzYlBYX2NUVlRocFRRRi1DQjljWGRRSGo1Z1JQcUpDS2VBMGNFUVJ0QWZXaktteC1hZDE1OE9qMVI0YUo4NEtGcldldk5aU29ybTROSVY4MHN4ZV9GcDRPYmNIaVpENDJ2VUs0T21kd2VnTjVXUTBtZ19reFlrVzl0VHZUSW1kdXJHZHVzRmk5dEtNdjBzYU1KYWpRbmpfY2cxR1FpYVZXVnlaLWpaMzlTdGZRamlsemo0eGhkeERrb0NEOHBITHJpbGdFOWowX1VmRnpuSkRFcF9jYnVIWkRwMnNZQ1hNd2kxVEtCWTVyakVRRXliRGIyZ29sMHZTWjJZRl9ZcWlfSms3OW9OcHl1RURLcVUtbEJWYnJhbUZnb2hJQ2R0SVM3bGdScTZxSlZXMTQ1ektJNm1FNVVGRXNOVjMxeXRjT0NkU1prN3RUR1ExOVk5MXp3V1B3Q1Bjc005U052X2JDNWZFZ2laZUZESEl0b0pJRFowc1lMTXJFVXJTWDVGQ2ZUSy1YWE94OHpmZEZhc3ZQX1dsUGlsNXRpSm5wS2JOOTF6X3luX0tvZkpocUJuMzloVUlzRFhCaEJvOENYYmh3SGdLSFFDdU05cGMwdFBRQktvOTUzSElNVVd6QkVCVUkwQ3kxLVhTRDlveS1jenJ0Y2xiQTF4WTJlUFhoLWR1QkpqUVlQYUN3eG8xZGdqNTIxQ1F3aTlYZllwQzVGTVFSbWlvT1ZEVjhIekgyN25RZnpaTVphZ2pDQ3VQTlBPRFlkdENZdlBKdG9PbWdqYjI0dVVycWU5VlBzYXZ6SXp1Wm9JVkhLREl6REM2UHBGOHBSTzNiNU9GNjgyWVhYcjRsZEJqOGpTNjJBMmVISWs1ZUF4Q2I1VzduWGF3eTJ5Nm9USHozaHlIcDVvbXRHWkxmanhHbXRqci1kY252VWtBMTZkSVptUzNkSF9ZSHB3SVlIVFRleW5FZlZkVjVnYm90Yk5KcGRKZEpUclRpUTUzckNpMnFHZkV4N0hQNmtIbDZENUdFZENJcHlqdk5ROEttUklLTlRNdmxQa1JxMi1Icm1sb0RPdmVRQnlxU25sbTY2QldUS0ZENjhZZXpYVGozVkxFaDF6aFZsSUVxSndoa0dmaXIwYWRwZUR1V1NiUWVScWs1dUhNeWZkRmxBS3NQbkdBQmNzTzBFb0oyWlhjcE8wdzVDZ0RkcTZSOThnTUlKMWV5Q3F0SjIxNlhpUDdVbVMzOTBucW5FMzVEYzljTWN6ZjZxQzV5MW9manh1dFdNbU83YkhoMGxtTkp1WFEtU0VUVkNXWW1nWHZWOFJjQ2loZGJyVGRvNFV6Y1FDUXA2LUN1dXU0UzNyT2tzTkJTOWhUTTEyeW54c29UU0ctSmtsUnJRVHg1UnVzX2ZKTkhzaE5yYm5yeUNFcGxfcVFMeGxMZGdjRUx2RTEyZHk1S1czNW9sOXJIZmViQUNzd0Y5UUZ4aU45UUp1NEZ4bUE0XzRxemVMUUpmWDkxOVk2cG16SkxsbWVKVjU5NXp0VzJ3NFFaUC1XM05mQkxtalZha0ZaQ3VKUlNhazJRZnFnQWxxbUlCdzJYR09NRFhVdkFVWHZwb1VCVHlIbWVhVVFHSE5jRTNfZkhWbkgyenBCbjhlMzFUOTBSRjY0LUhkUXhVWG1NNnlLcUt0end6WVFBZUdLbEVlZEdnSTNMcFZ0OVVPbFl0YlE4QmpwSVhCdzQ4VEs4M2FzcTFIZ0RicGZZLUJQakgxQ1E3Q1VHc2NLVmJ5SlhoUVFzSF9VX0lKTFdGZHpNcGVYM0VLdkVjdFVlU1llN3ZGdkZWTmVod0RSSW53TVFvSDVObnJGMFl4QjVzX0x3NTlWNVJYdDl1aUhTMkNMTWtkTHN6OVFvR0lEaUxGb3hNOGJFbmtNdi1UMUhYcldDNlhnc2lJSDNCTGJOVjJ3TjBEVjgxSmRkNV9RNmZ2VVhSOXA4Z2ZaVG90ZTJXWEJaZTR2R296Q3JybWNFZVlGMUZJVlNLY3VMZzhGSWVOZFg2MVhSTjVyUjVfZE9sYkRwVjdHamlmYkw3WmsyVXBWdWJHdXkzc25NWkFMSmVtU3Y0RnVEN0Y0NTg2VnAyT3dya1EzNVhIYmp3UDhpZU1BZzk5M0twSk51MWRQUThURXNvaWxpbHpZRTU5X3dFcFZxSGZYS1pDWmJpczh6RXVXb3c5dVE5bEI3ZHZpejFmVmxxRnFrUzY3dnl2Z0ZiVS1QTlFPcE5BX3N2WHlsbThRZWdxSmkzek5wWnRoekhpLTFSMHJEZTk0Z05hcFVPT2Vvb3ZZN2xxZXphZHQzYzhrdW5jNVZON3dMc0liVGZvcDhPdmctWVd1ZXV5U2taOUhVUGtnd0dNc3Vid3c2RFBxdVIxazRUeV9MUXA1SF9tckFxdnpHNmNDZ1JXdEFXczhxTUltTUpOWGJMdEJuNWpiQUNleW44Sld3SW05aTNvVEZJWjhIMjhvVF9pUzMxekltcGZxSW5qNzByWGtoandkcnc1ellvUXM0dnhBRnJVQlRqbV9OU1ZFSWMyTW5tYlNVRi1fbVFQajZ3UzVZZ0tEenlNT2hRNTNqNE9MWWZHeUk5VndCa0RJRnNBTDRySmtzYTRmY1JwVnFQSUNfcDczY0NUR0NiXzB5STgyeFJSWGRSaGY2RmFYUWtyMURGVFJnMEVTd05yc2I2dVpNRVBCTk9uY1VJcTd6eFhWZHZ0NEdleEVxRU83NzlTSHd4SXVjc0JyTHNsSHFNT29SMDh3RHZwRF9DRGZLUlZxQUhfcDQ4V0pMU2ItSGRHSzBNTG1qUEtSYk5UUTNYbWlZTllxd0tSdDhzMC1hV2gxWjJwUDFXM2tQWW5zUHNpNTRnQ1EuemFGdzFFNkFKdDF0QjVldHBkR2lyUQ" + "value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkpIOUJ2R0hFUjh6NkgxTWVnLU9velVPWXpURGxSTjNmWWhkWUtPZWN2U1JER2x4eVZRTDdCNXU0eklXaEJmY1RBR2RBMzhwblBtbE1IaHhOd09fanltc1NTM3kzSnhLcFBfSDNQbTh2dzBUaFA4Sk5ENTRmR0JQald1TFdzUm4wTEtiWlFPUzU5OEhwanpub1ZyNmVPRW1SNzlST0h0cVVFUWJWOGJwUXNmWUhxMm5mSU1FM3ZESXRHUUNSTndUYy1FaGsyR09QWTgzMkVZZEREU09iZzVxTjhoWWlEX3l2WTRjc2ZhOU1ReHhVejhfNVRZREtwWF9jMFRmc2QzWkJYUGxuQmhBbmgtQkhNOFlWNDdtYjFHampYeFBlZ1E3Nmc1THJMTlJKYzdwLWl0SkF4dlJremx1Q3VTeGxfUFY0dl9fNlpLYUk2bjRNMGFLYzJ6d2lUQS42OVptWXpUZ08ySmMwSFhyUFJERTNRLnI1MEFZb0Y2SmtSNEkxcXBHOEZNMHhWSC1NNVo5eUxXSmNXS3BvaTMyWG54SmNERWtSeTRPTWw3VGFYREZLV2hXcnV5OU5qdVpvOE5fcVRSRjBGbUZfYS04cXhBb3dvZWRYOTN5Q2x6TTZnOG4tUW1tTGlSNDF5a3JSNEtZTGJhRnh1NHlqVzljRHJUcU9lZm1GYWw1dFFlZ0Y4aGVMa1NRdzFxemNSMXRZdkN3SS1CY2gyUHg2YlhnS2VMX2UxVEFWbFU3dEs0YXlPUTRZRWdEeWM0Z21vX2JoWldUS1l1YndPLVhXdkZHMWRua2d4dDU2RXZPQjh5UkI2TXdJa0VCOTB0dDI3enNaRW1LUHAzVzlPR2tRS3M0OUw3aGVJSzR4ZEdZOVhjaUZZRDBDZW5xMkY5Zk0yckRxRUpRQ294bzk2enJLWW0wbUFvUWRaNmVLM2xaYVp6eUpPZ2tWQjNuSHF0TW9WOXpuZktOc1lGQUZtZml3U1o1ZU1NcHZXRVFaR3Y2YlBCREl1Z3VvYnNJUjNuVnBfZjY0M09HaE5XTUJ1a1ZVOC1EZHpsZTFzcldBdkQ5YWFnY2VCUVNaM0MwQlRNTllRUWpWM0xKYzZPVDFOWWdCS2diYnB5SHJJOVQ4Q3FRZVZ0RER4eXIwdW1XREFnbGtPdkRTOWkycDFJN09YNUk4UVVJTFJydVUwb3ptdGM0MHFlWnBtNFpOMVNNbFV0Qjd5M3FVY2pZTmVramF1YmpYc2plbHNsSnZPdGllVW9hbklqY01nVzRTbEZ6VG1ETUEtejJUTGo4azNWbmVXdkJCSU9UQ2dMMnJRbWZ2QVkzWWFSc3FIdG54NEtXMm82ZmhFWkRCZmEzbERUN21lbHQyVUtIWWNMT1VGeWVuN1c3N3hEamwzQ01xSzlUZHNtZWxNa1hKZTBLTGRUdGgtT1FMMS1xU1U5MlBNQzBQVUZUdDFfdFdjcUJsR0hTS29UbmhjeDUtWjJjZTE2TDh6QWUzc0xVMnR3ZVU3WmFpVmhTV1RxLWp1aTd5VUp0LTlicFhvdnRnSUxiSGpYOGpyajM2bmVlNkxEampFMEVnV1d5Nm1JY0dPTU4xYnM5S18ycm5NZDZnTUZORVJlRWlneVFVYWcxVWE1cERPdTBKVkdWUHI5LWNJOGhGOEpiUldtd2U0MDNEVWlhcnRBNUhEcmlNTmEwcUhaU1RLRk1rNDNXSkVscFJ5RWZqR2k1MDBWLW9Nb3ZWenFtcFdOWm13T045RU00SVZ2a0EwZ3NLOVNFSUgzWmRoQWcwVGM5aDltR3NfWUY0NDJJS29wUHdFRGZyYWJGZG9EcG5seGJheU1QZU5USHFYRFFMYXdpMlJIQ1ltQmpkLVlLaGZiV0tQcFRudTl5dVRzUW5IN2pSWWJrWklKWmJ0N2cyX3RudkJ3dkc4VkVxUWg4eklUd1lsYWp2bUludmlmaXRfaDZ3R2tkU3BMRmhGNEdxdUNNVjktYjNHTlk3eFpsTzFhLTRZMXpPenh2T3pOek43TWJNVTcyVXNBLXF5RXNpRV9sRUFkQldQNk5XWW9DejcyQVQ1ZEN2NG52OUdwSmM0bGZPc3d6dGlNTzlWUTAyZ3BHRFNjZ1R4dl9TXzQ0RUtJTEdRNnFpSTlyeHhZLVV3T0Q5QUFFMVZiR0hCU0d2dGpHaXk4ZGpKR0ZHbWtVYlc4NTh5YTlXR2Z3ZzNYX0xKRXBYaEEycElFcWNiN0hHRzdGTUJzeWpOYnhYcUhra0lMWHc3VVlYZnNlNVAtLWdIVU1QMXFFbzhWdVV2d21HbWlya0hNMEpSc1Nwakc0MEZNTENnS0puWFBrLU5uVkZNOXJLd2tHS0did1Y5NmU4aFhFU05UelhEMzJqbkxXUWNhWlhxblBtWmZxMFVaVnBxYl9UOF96OHFPLWhBc1hNMVBvVGtSMVZLZldjM0d2NGRJVWJmZmdYWWxCcGNoLUdISkRJd3h3dGxNTzZXMFJGdFZIUDNLN1VEY1l0QktuZXQ0N1VmTXNPUDBUVDhHeEtLX2NWd21sSjhHdE14LXl2ZFdidEZ1R2RXZEFBMG5zTWJTQVZwWXpaLTZBQ19xcmNFLWJhQWRyLVlPYmxSS2NmZm9QbkFTTnM3b2RvdUxLUnhlUTRKQ0E1V0xBSjhZLWt4UWhRT0lfWEtSQzZZNlEtVFRzV0Z5MVhrOUM4d0lzaDQtZGZmVVd0QjZDSnI1cE5mX0JLNURVUFBTcHlUU0ZCVDNqNEtXd1FvV2hocnRtZHRoOVJRbXlxSjdXVjdMT1g0Z3ExTENpZzVSdjZUX0thWlN5TGc2ejdDZ2hxN2hrTTVwdmlnWFFJak52eU5aWHZldTR2a3VjVV92RWRRc3hnSm5QUDQ3bHNKSEVCaTFuSjBUUS1zeUFXOVBGM3NBN19QMm5iVzhxRkdnclZuaTlNR3pva0tPMFJpaUswcnlLaDN6V0xhQk1LUWhETi04SDNsWlVYOEZUSE1mR3M0N290c2dnU2pWU3c2NnhNUmQ3RWNuVy1rU3doTUNxRjVfWnNOdXlXWHpjQXF5RUc4VFpzLVdiWnVHTmNTZ0tBTWpvcTVFZ0lIOXdBSHE4NWRTZXlmZUV3bTM4bnZHWThkZ2ZwaHlHMmFpR0p6M2dKQlRyX0hoZWkxSHduZHVELThIUEVVcTlVSS1ad043NEp2d2YyRm1KQ1BLM0U2VWhmbUlXUjQzZnM4Wi1GTnQ3b2Zfd0hCM1JMNHZpTGJGbm5FRFJjMGdZTkVreHdIdVY2b2dTNnFCQmdNci1HdVlrczc3STZWc1kycVVCa0RjMk80Y2oxLWNHRkhmcm10YV9Hd2I0ZVBuUXRoM3FISFdfTEZTNU4xbTlpeTFwWnBYVjdoamJXbnJkNV9RODNWVmM0aXBLM0xERWlBWE5qVUtMNWZLc1hndUM2Wi1nUlh0N2R3UHdKOEpHcjdlSjR4NFdlMlFZcUdtTUVXZjVyREZGYmplY3pNdUxQYWlrN0VaeGNTcGtMcnFsMVM3ajlkU282M2ozdFJoaUE2Q2JWYi1QdlJGVmZTQi1ObnVWWE9JWWFjdUx0VGJkN2tmdFh3OHhMYW9ET0lybFhnaHE2aUhhUE53MXJpUmVfcFhfQnVZYm1ZbjNSZzNXdE9kSV8tbUpNRWk5UTlOX2ZIRDBueUtHLVdNOWtDNGU2YlYxOUpkd0dYSGFUMjM0b1dlRVlsd1VMemJyLXFmUEtrM1k3SEdjcVNkMkpQUGpFM3kxOFQtM0N4MVVPZEYwM044QlFwQm5maGkzaS0zd2o3Q0lSb1Bma2pGVmJEOU1UVmhJSUU4enhzRW93TURicDlRTEpnN1EzelBPT092QmhxOFhXWFZ2Ykx6OEpCQzlqRnhOVnBEbmc4aHZTRmpyZFB3djFPQXpQcW1mOFFlellWQWpzMlNqVDEzNDdkdjBxT1EtWndfSllsV2c1aExHVlEzU0gzb2J4aEJJcE1ybWk4NVNybENyLXJDbTdWNmpFc0RPbjRPOXcya3FtRTdBTUJQdjI2eG9aanJhdW9mdW9xVDhoT1ZURC05dmZjS0U3V1RxUGpuOXBmUlQxWTRBSjNDaEpPajhOc2RWWFVUNEcyNnJxLUY1MW1fLUpCdHZ4ZktwQ1YyNVBqdjhTc3laSnpyT09hMDh2VXk2amxzRUppNG84MENLZ285dG1fTmFvU3hzR2JhYzRKNHU2bnBMeU5vY1g4aHJZSFFjRjhnRVRGTkJSbDU0Q3F6WjZBQ1hmZTFfd2U5NE9XWEs5d1pBV3pOU0h5MzM3U0l4Q2JDaW1HOXVZOEV1SUlqQWp1VndYbTg5V29pM2hQVnpBdXllWFdsbG42YzlpRHNhRWVOYkxBczBXMVFLbHI4U0FvWlotLU1OOUdrWF9xNE85VHBseDdnZ3QtUFFRWDZlNkVUc3JfM3lyQVRVcERYckJSTEFuc0lXUm9ZS0VsQmswNjdaMzRNQVhrZlhVOFZOV21ic1VFanhyVExteUQxeVIwUjZBQXZqR21VVnZCbVZia3V3ajBZLS05aVRpYnRGb2Vwb255Rk9fbEJXY1VNTWhhbDNIcDhBSWNRUUtTWkVLa1FTWmdLODdoTTJEOWh1NVRad2t4SzI1YWtMVGxxaFdSY3hKXzdLTnJMZFhmOHNwTWtNa1ppVTNkOHZONUpRWHFxbURUdGVWR1FHVUZnUEpwVFVvOEs2cEdpaEs2bktmYWNuakFHbVRiek8zM1dMZWRZOUVKMDNibUhoRU1QWXh4V0hSdjhjdlptM19NQURqdlA3cVFMeGFUalZxQXJNaGRLVXNGWWhRcUNCZW8zSlNJMUVZN0NYcU5MTEc2NHJDa1RuTGhGVWVzNjVVOXV5Vm9NZnJIUWxaVml4T0hFSnVHY0ZqMWRFN2plYjF0cWFTMWk4RTVsR0pWTU1tRF96cTVzME5Bcy1mZGRrbVJtVDV6UHdiWHZaMnZMWm05cmdGRkFBRF9sODVrZkFWeW1PSldkUDJ1RV9GdHVSeDJDWjFYeVBEanNaWHl2bnBnY0JUMmJzeXdmcEw1VTJXRS5uYTM1NVBKVzQ2b25qZk0xbWtMSjFR" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/791790561?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f06-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "47fe4d015fbb237bd86754540f5651f9", "x-ms-return-client-request-id": "true" @@ -103,43 +147,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:43 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "049b9a1c-e343-44e1-bba5-a66cc39f2aeb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d35d5daf-cc50-4a42-b4b0-068fc2ed9207", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/791790561", - "deletedDate": 1560877004, - "scheduledPurgeDate": 1568653004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/791790561/ed056348583f40fdba86a2a126d00049", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f791790561", + "deletedDate": 1565114046, + "scheduledPurgeDate": 1572890046, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f791790561\u002f214d402e064b442f859d6f70f38b5a12", "attributes": { "enabled": true, - "created": 1560877003, - "updated": 1560877003, + "created": 1565114046, + "updated": 1565114046, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/791790561?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f791790561?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2e3c1136e25e451449c4298223027d4f", "x-ms-return-client-request-id": "true" @@ -148,24 +193,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:56:53 GMT", + "Date": "Tue, 06 Aug 2019 17:54:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "faeb0ce6-c7a6-434c-84c2-b0bc32d5dac4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c05823dc-861b-4622-b3ab-f51dc30a24d6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "963617074" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretAsync.json index 1c7676004483..07c7b7893d7c 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1676605094?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e7-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "3e45fee29baf8e594fbce9183fbf42fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b0494f86-dcce-46a5-91f5-5e162149a8ca", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "25", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3e45fee29baf8e594fbce9183fbf42fc", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "236", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:37 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "98aa3717-363d-4081-8a7e-dadcf1dcbc69", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a29d8ab0-adad-4be0-ad04-639e4a92997b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "BackupRestore", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1676605094/147fa8dec2eb4358ac5aef77a60b98c7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094\u002f0f7766e6c46e41b1ae3a84736cd25bc1", "attributes": { "enabled": true, - "created": 1560877058, - "updated": 1560877058, + "created": 1565114349, + "updated": 1565114349, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1676605094/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dd85151275406964353aaa8091c51ddb", "x-ms-return-client-request-id": "true" @@ -65,35 +108,36 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5122", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:37 GMT", + "Content-Length": "5320", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ccee2331-1371-483d-b0cb-eccb236a4ceb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "855b6134-10b6-4807-9527-37ce3d9ebdae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmlFeS1ZcU5laE9TM2pPT1czUi0tZVVRaEtMeDhxeFdKejU2M29fV2hNUjR2dVFqTDRpZlQ4Y3Nid19UUjl1Tlo2OGNtc2E5Z3RTU3BxTEtOQVhSRkhsSE02NHdQOVJFSjFXcXN5Ui1WYzl2QWtaOTE5WFY1YnlNM19HNjBOVUFJWS1PZ3cyQzZHcTFfQXk4dmRZVWp2Q2dQcmZURzBFSnJRdjRLSC10UHhGMDJveU5kX1lPSXhGSS11QVdhNGJUY25nSUlIdUV0UWJnNGpGWmdYX0N5eEZQd1I5bWZJN0VIQzg2Yy1ycHg1TFpraU1FeHRuTk54QTlIVGt0dWdoVmJkTDMtY2cycWRhZ2NXa2FxeEJKYWxRRmZ5aUhSZTdodkE4T1RSY0pGcGtKNW93bU51blk3M2RJbWwzQXplcUk2VmdkTTRjbHNFeFRnRkVJUUpYbXF0Zy5QY1VXS19IdFh0dmhxT1B3YTZPS3FBLjdnc0lHX2pIRkVKc0lCLUtoS2o1ZENVN2EzNVgzTVdPSk13VVZDNHd0dVh4cFRsd0t4MTNPZVdCRHE5TGxGek12MnYyWFdNczRBQ1VJbmY5aV82X0UwdkhaMVVZRzZJLXpyY2dpRUVSVDZ5cWs4YWg2SmN6ZVhtZ0g0MXZJWkM0N3ZBdEU3U3h5dmV4UVkyVmROTFFuZTV3eUpVSjYtamFlUTJBMzZ5TXRTa3dUdGlPQmpXaVNPWWtmRHZ4Tm9XMFNhSXVkZllSWXNsMVl1UmY0LUtmMXhJdFpDblFuWnNXUzduOGJ2MDYtTGV2N2xIZU1BbzFoay1HcHFfMEZ6RzBvVmd0SnlJa0lXR0pLM0VwdC1CV2RmdldJby1UYjVXZzhRcmE3am9kbmxaMjB3VHp0bnVRanZoVXg2WTM0UmFrRFhvRi05QThidnNHR2xZZ3NlaW9MWmJWa2RQb3NFYWVRX3UxNHk0SzRIbm1nTjF2U0t0dW1rNU9mdmxHc3VuOTdjd29HTUduOXlIOG9KbVkwQkIzaV9welJJUElLeUgwa2N0Q0JOWEp4REJhYW9ud0JneF9BMENxVlVUOEtVV0lqWEk0bnZuajNWSUxWUzFzSm8yZmthZjVRLUhha2prWGhYTTBqNkFKRDZXSHhHM2NGMnpOenlVZTcwV09wM0UyNTBNRWI3M3hFSUs5OC1VQlZNUzRfTGpDZG5uQzVKZFlYekxYRENKTnpJM2c3NmFyZnlEcWZuQlJ0bWdBZzhJTmJQU3R0dDkzNVJhbTRiSE1CMjZrQWNlX3dSU1VpQmhxbHRVTXZBVWFGdDZQODdsSHdFbUVzZ2p4SkxnMWpScDlpTFR1aG1meXVsODdxNU14SzF6ellUa3luLW1SV0ozcjdlY2IxcV9xdGc3S1pXU3R3YWtoOXlBWnVrTy1NT25FTVVZMXRrb0k2R3dMejl2UGtqUkl6V2J6X3dwRkZ4MlZwaFJNOGI2R0c1WHBEUW44cHdzZS1QTnpPcUpSemM1ZUhoMEpUM28ybGNBYjlXSzgwRE5QTGlaeTNZTzdsaEwxazZpZnllZHFnbS1TdkF0UmlNazAzY013N2ZhQ2VCUFAzTzRhOGUyQXVXdDE4RGtQNnhCSjBZcmpVR01LUC1teEh0T3ZOX05Ha0lrblZtWXBpN0FhOTFHLWV3eGRPQU1YWGp3bFZIVEFYNEpTaW5YQkNsajZNb24tTnBheFAwWUZFQ0FWX0V0NHJzb3NGbmNSU1AxSkI3Q3lkcTlQeHY4R29WQlo3OWNRNzRtaFZmOFZVN2hUME02d1FVSmVTRXdyT28tSUwxX1NtNlp6b29FN01NZXBpQUZxOWFnYnVXUUR3Rjk2YzZZYjNSdHhzUG1WOVRkNkxpT3hhSmU2SFluTDNCNkhjWjhIV0w3Y1RJdmFwdWs5bkl6cVp4dWprV1hrSzN6QWg4SkNjbUpENllmX0ZaNWVyTzI5V0xqbFRMX1l2Tk9lZjdqX2ZESFdrNXRfREUxaVl6MkYwY2otbm5hR1d0N0NSbXlJaTY4bkZZOFVLaHo3SVNVRnpTbnBld3ZfMkNDV2kyMnBUV3Y1WXIzdWdlcVRHaGNoTThSXzdQMm5OVDV3R2NabUF6MVV6aUFBYnNJSXpoSGVmUnloVE5OYmpkMXBBUlYzY1duZ1VYSENSLVEyMHpuWjBjUUZuZzUwVFhXTzNRR3Z4N1JncmRFczREWG8tQUg5NUNPSUNOcmwtbTlvengydnJBam1iTTNnYzI5T0lUTE5IYng5YU5JNW5WMFRmVDh6U1FUUE9sZTNPcHBPMndLSndPdW42TEpFLWdwRFFLVmlBY0k5WVZ0TFhBTWhDUHdSNFc1clVYY0p3bmgtMzUyT012OW1KRU5HYzR3S2xFNUZpWFJpa1puQ0R6YjhOT1ZUR1QtSXlfbV9mdmFJM1d1OXlkcjlyRmZISUVBekRfWmdrQmVCX1hFTmY2NjVmQkdteUt0a1E3dHhIWlFBektHYlplR1NtT053ajktQ1hWRVAwMlFLbzZ2eWVjOW96TElveEdaMkgtekMzc3JxMG1PX09fRVdCRjRtX21KQVVqRnhOaVBDNkt6aHRLTTFEeGdnNDFfVTJOSzJRaDBYTjItM0lxQUdwV1ZWYzlrQVgxaFNRNXRHS2dXR2VkYm5Wc3lhSm16MXQzRzd6QTd1WjAxQmFFR1d4SjBOSWZDbC0zeEJiWGdGZEF0UVpxS0F6anJ3VGxzN19PYWh4MkpvTU5QTWg4M1B2dmIwZ3hvdkl4S0ZRaXhTTGl5RnVuWl9ST0d1SG42b0VObXRzbGVLbmVQMzN2YXJzUURrYUlqSVdXMjJvN3NtT0N1Zm42TjhJa3FaTWVLekp0T0o0VEMxSUxUY3dwM2xTYzFhUTVlTEpoWVZITmtTNWFjYnpubVd1VkRuZDMxeU8xN3pVWEppbDRScmEwTjFOb0xseDJOdUUxQUp0dTNHY2NMOTJoZG9tS2hpRVVRUjJLc2JrSEhQRUhvbFRnZUVBc0VSTFlCUXJpSjN0eVh4RHZVZTk0VEE3OUZBczRUNzRmRGJ0SEpBT2YtVXVYV0lFUHpSMWUzVVBjdlY0MlI2bWw2WnlsNGpEQzd1M0NrS2Y1cXdJdjU0OXhjMzI0bjMtcnkyV3ZoanRpNG5xT184OE5TQ3R4Zmc1aVpXd2F3dGJFNFFBQWFmdXN5MGc0MWJVa04tY3cycHZnSmg2TVFRR0Z0MElxWUdPX0F6aDZlSnpBVDZzUl9BNUc4U1lXWTE0c3NKb3dER3BTOVZNWktvZEwxVGJhMVlLbTRrRWVfQWR6VXJ0VlRqdGtmUjdXcFJoU3NwZHBlV1UtQlhZTWk5Qm5vZW5pT1JoQ1VqT2NnTmZXZlBkMzlPSk9fSWZVQWVKbHdGVkhoV3M3WGgzek5OdmNLRHQ4Y1Bvb2FmRV9iM3hlTEpBcTdZdmFDem1zdEtvY2ptbTVmbDlIR3RnWXlEVF9kNFpBQlVmSkgxTll2T0ZyNzVPUnRjLXdoRDJiVEw5VmFqaUQ5Z1JQWlM5T0VSSmRfLXlJX2QtdzFLekRYU3RCd19jYUdWWXJwTGp1VVpmVXhKS1U5RzNPZUpxQkxJRkFBMWY1Q0lMNU00Rldtd1NYY2pDMWZETlp3alRSOFRxS2tjZ2s0aW1uOHh6dGxTS2E2R0prTm1DNTZyeXVENkJHTHh0cUZZTUdvZHpXLU03YWQ0amF6QjdJcVVuSDl0WlVlUnkzVldQbmpFSXhfT2ZBRzB0X3JmNi14QTJ5ZG5ZQjl5RWd0YVRQNDJyYUlDWG1EN1lVaUlJRTl4cThtdUFxc0lIUk9zbmg1dHJPZEdkalR2cHU5QkVPdXp1MGpoMmV5bTdKRkFxa1hsaFdVVnNBTXBHZG1wRXB6aVlnUWxXU3Y5dXNWM2RZWURfdDVFZVZYd3EtQVZUTlBaVW9TY2dNd3RyeFAwV0FpTjlTWkZPNDgydVVZTWtqcDdsUFg4LXJyOFJRN2R0bVJPY1dXbXpvTU91MGV6bWJrNENTWXIwRndJQUxkMFlBSGdPZy1DS0dhWVVKakRaUHAzYVhJSHltRF82NHpJWGJUTFpPc3VFOXNRX1FWdXhpaUxOanlfaUgwdXp5S1FaSllsei1yTjdxeVNtYWdNYVBWU1JYU2dhLXIxWnc0Y0Z4YnFkQkVlaXNsQjNDM3ZOTkRNYWI2VEU3bC15MDFHUHA2Z1hHZVdmUGZUYk5TM2FHdmhyR0I5RVA3VF9TQWxPejJKT2IxOU1NbFJTOGNoZ1ZEUGlyQ0hrMkhhTmRQNWw0SXhXUU9NdmZlUkVOQU0tc0g4VHptSWloNEVVOUt5TVJuSU1fbHV3TE8ya2lxTXFGVkZRTTFvcFEtR3hscUZqcWxtSnhjemxnU19BR2RFZk9lRVE1TVUyaG5BQU14Ml80T3BEdnlSV2lCQWUyN1ZwUTBZdmk3UHJCZ1gxOUY0RXZEME1vaUItRUJBYVgybU0wRF9zRWk3MEJ5WFRUV21CUHpUQ18xT2RncEptZTFSdUtBSDNWY2FBUU5hY1p6bmJpM3pNcUFlLTI0TmdUdHpwMC1VaGxyTzlYMEg2MFZ5T2NlRFpKRnktRjBoUnFoRVNoSS1DVnZPLWFFb0czU20wSVc1b19YNWNnVmRHeEVJbWV5aklSYlIxRkhQdkhORnRkOVNpMGozYXZvbzU0eVpIRF81SUMxdWFoSlk5NW1UbzhMOWZrcnVKRDQ3WDk2X3ozT001bjNYV2hZME1tM2t4MUswUmdMZVlROVVjekZJY0ctWk9oUlVpck5pblJZdlg3TkIyNEJvY0ZBRTVGNERTSlB6TklHemRlYXBhUlRxYUEuOVdWaWJBVEgyY1dESEpqR0tKOV9yUQ" + "value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk1KYUI1cmYyNFF0RUY0RF82VE82Y3YwYmxLazJxT0Nfa2QzVkJsWGhPX21MdjN4LW1xNERvQ0JyM0NrdGM4MW5xRTY2YW0tdG5kT1JWMU5jY1M4MmdNcjUwTy1KSWFqQlJrX1RFTWhNazBrYXQtM0h4X1VvRmRvblJkWDZDa2hLRDZ0YWtrVjlJbkNVdl9lZDNRM2daODhhd1NDY3dLZDdqVTRYRzdYSjBybExWaDkwSFJIcndKRVc2MTRHZHlGYlBrVVJhVHJRQmljUUNBR3k0SkZ1bmFnLXBfNjN2VGtGa3pVV09LRlVfZmlWd0N1STNFSFhKcE0wZFlVc1VabzZ2ckFXU0RtQ0JGdHlTRnpVUVdGNW1VemtQc0szWkNUb2duWVVrNnV4Vy1ZeEpvQnN4c3VyTkxYODd1UTJEZ19LenhGZE5kOTJlbnpUSEVuLXBxS1k2US5IdjMzTkZKNTlyQndtR0NBaWs2RGtnLmE1alVPUzNBZUxBZGhCdmo1NEowajAtM042clJhQS1xSkRyeWtDTXE5SmdpVUtoRkxzaC1RZ3didl9oODFaeDJtWmswRWlVMjM5SFpPZ1VnR3UxRUgxalVLVDlqTlJNZnVvb19aR01DNzItVUZlNGVOOVN0NXdEV09KTkRyUG5NTkRDQy1tM2pfYllSbG9JaUlLUXJQZXljdUdKWl93cW9WUnRPVDZWd3pqdEZ4VGtPc0M2WHFoUHBFejVTVmtIeEtwalZNbVNuT2tNdEtsNDdGeE0yM2NHOUVGTnIzVlNaTjZWNk41eFVJazZOY2FzN3VlbGtJS01ZZHlURHg0REhSVWZzZUwyQWFuSTNCaEpDSVBZU1VfRU04OEZ5QmdKdkNsVGRhWXVEVXVodndtN19YVWtNS1NyRlZDUnlBTFltT2hvMjdiYldZNEVuZUJ5VlRpVFlfLVc5bUVaUDVuVzF5c0hHQURPYWJnaXAxOUFMQ0xmNWlveV9sdmNwdzZTS1dKT1htVkYyUXRhby1oSmFVM0ljZEZ4MVhfcFh3RnhvSTFUb0JvUHlJbWcyTWtHek5sNDVtb1IxSlgzSmtnb1hCOGN6WThNOTJIT2V2Qjh5eTNjX29Pb0ZWblBzeDF4bzIxeDNscEZHeHY4dFRDc0l6MkJld0ExcDItNGJ2dUNFSWFEVTlhV3lPbmhQaVA3cHg1MngwYmRIZkd1U3dwOUJJaHJyVHRzZ0ZUQ0VDcnU5ZzhqbnpRQVlaWlVxMXBYR3p6UkZGYlBzYVEtWjVCSzAyQzRRaGZRZG51U2YxbnY1a0JscWRGbmozZk90UkJLWXVjcnp1UEFXS1ZnTlRfWVU3RERsOHdjZkVESjl6RTlibjFpWWdWRUtRdzU4OU9xX0ZsbFJJczdYdnhGV3JYMEFrcDdCdnBzdFQwbVB6R0pRSGRkNjcyaDRzTWdhbHNkamw4eXM3RksyWlZsOGR4SUdaX3puUGpHRE1oSFlWMWxHQ3NlQ1ptNTZJQXVtaE1JMzlzem9HYzItcjlLZHNGOFRjNmQ1eUNOY0ZjR0JBM0tRR3l3WUNJdDlDMDA4c1VrdWJiTmt3bld3b3FYQmFXV21mY2d5R1pST1l6YXFXZFBLT19wTW5JOFMzTlNnMExXUy1WZ2t5YXRhNEpINTJ4eTNhdE9jLVFvcFAxUF9yYjNlMjlDNzFDMElLYVg0MGpMaE9LdWtBaWZHSXVRa2loNWx4Ukh4bUgtWWZZdVJnLTdMblVfTWNhQkVTV2M1Nlh2S3NyRENEM3NKOUtWOGtXZ1otd3h6NHkwLWFKX2pndFZDRk5FZ25zMHVqOEEtVnFYSnN1X2l1RU1leFdORDRaTk5HWUpxUFdHMG0ydHNLY3Y3SXdwek0zRWZwN3N1NTVjcGE2QjJRSVZWQlA5blB1WUItenU3aHV5YUpNYnl5Z2IxVGxvR25vbm1QOGZlaUNXbUNnZ3NvMnM2dDc5T3RmRlUzaG8xMXpKVFAwUHVVVmFpU0NnaWZENmdXREptMXdVM2RKWUhVT2RxVkhHM2ZaSlplYm1USngyX2FhRVp0N0lQd01BdWFOTjl2cnNWcEpKSUZMWU41TWQta3RNUlFVUEFVdWliRktaRlJCMVFmV1V4UHctLS12SGZKS0YzVWNseVRtLWJWLVJZcGRJTk1qRGRSU3FkNTNBa2JSeUh3bW1JNmx4WkxJYlRCa3ZWcEliUldzTmxiOWtqWnRlUVE4dVEtOFF0UlZoLTllY0VVS1AtdGpROEdraEdvekpac0xKQnNmNVkzQ1l6UDR4aEhITk1PN2VWMEV6R2E4cXhBMHJXbHA1cWJ4eHZzQXZ5c3JSNG9GZ21SR202a0M2WVJaVGRnVngxZ0tOVUMyRUg3VnJjaC1WMU5ZQWV0RzN6Vk9zZ01kUmROMzhjVWlucFoyNUVpNlpCODNUUnY0WFNXTmladXFoNFVyaXlCb1VGN2RiRkFKaFFzbTBQTFBUV3BNUHVqaFp4RzIzWk9MUTdQaVlWanRBRjdMYzZSdW5idUZZbGZGa2lFUldtd2VEcVZNREtkc0l2azVraFZtdUt0WmtrVkZPOXRlMXl1Mm1RbXl5cnFrV2Z3SXVHWk5pQ2V3bWVYV0pzWC1tV2NmVlduWlR2T0FLOTZzLURpNDdDZTVBZkI2alRFd3NVd3g3RHMwSnRUdFo3WThJeXpjclNkWGNDNzk3NTJXdU5SWnBnbmNTcnBGUVBzS1dYNWdvNVN5emFaQzFMX1pMZzFlR2FPcjFnZEg5Vk9IelA1dGxSM1REcG9tQnhNMGtFTkc0djN1YUtSeklGZXMwLTBmT2lwOXJxeWthd0JRVXhJaVdUeFlaNExWNnRPMXJUVzBWLVllRFdKZnZnbkVPZXBqSVRlVVh6dUlTcHZUVU5vQVBiR3J1aV9qSEdzMndFN0dLNW53SFJLQXRaYzNTeHA2U3NDRThnU3JHTnZsclRnbGxfcnAtOUg0aDJfQ29aUmRjV3BDUG5jUjhJdDJZbnpkbk5pV0ZCTUJwa3VqbTdCbHFWRFgyaUlrSGx5YURMR05sZjgzSjZYWFdRVmpOcmg2cTlkZUVYczRZRnlHV3BMVk80OUIxVXpkajk2QXNia1JXTktHNkR4RWtWOXhKZXB4a2hJbWx0T0d6MEVwSUphNEdrU3JKNkRtYTd1Q1A5TU9PTVBLSmlWUUNueGNyMHlscEpUOURLQXJtMkNlSWdhS3ZUTlFKUExjd0JLMFZYT0RLclV5a0JDcGh5a1dkR0dlLUVaaGV1NDlvc3gwS3pkemNQbllzT2FwUjRFQkxrRzhjRHJSZWpLdnlWWlIzbXNlc0Zuekw5Qm1kVnFGZVY0dlAyZ0tmVFh2UFA3dDAtNmxxSUUxTlBqNmZpVFA4ZE95S2IzRG1IcVRzZjR4SUgyVVVwZWg1MnhvNjZLT2NGRzV4aWtNUi16UVVBcU1HSk9aU25Razd5ZzY0RDhic3hTWlpMWlZjQkhqZEdBbS1OZWJQMENkRFl2TlVsVElJRnBVaDQ5U2g2dnZkLTZpZER6eXpocURVcE9YS3ZvdXlMN3RGV1BhTTNHb3dYSnZqRndNOGVQelM0VjNHcXVGaGJRbmkxdkNYTnlTbUxZSFVkQ2JTMnZkQTNWTWtVMmZuLUFJRFY4VUtTRnRrM1B0eVl0MW8xdGExQUY0bkFGU052N2d1cE9tU3A5N0FyQUsyVnBQcjhPM2pYU29pYTRNQkNZM3c0TlhlRnp1cy1uV3NuN3VkUzV0VzhXWTRZRE82dFQxQ0xGSTZoTy1Id1Q0ZjN0TGZjLWdxOGhIYkl1N2poYUdUMTZnMzhwbk5CRVk1eVM5cWg5R0NDTl9RVW9Cc0EtRzQxdnZWREdaR1dlUGJSMlAzTUNkSVI4dzZmT2w5MmZ2cWxYMUZKYW9icmFVWm1xX2VsYnhYYzJhYXFLeTBWQ0ZxdzdudTZwME5kSGdCMkhEUGRHLXFOem9ubC1LZVBHNjlfSFkxb3B4dVdTaXNaLVJtU01LQmZCRkotX3dETk9ralFoMXNCbHRQMVRDLXFYZzZSR1hROGk2VmZpTDBVMzBVWE1BVEd6UXdqOEtEVWR6b3pubWJUMGN6TjNXZEpSLUZaeW9yekY3ZUdJRVczSVZnN3lFcnF6eFZxNXlLOEtucGlVeUlfcXVGWW5oQlZiQUVOQmNacWk3MTRfMndKZno0dVM3QUpQb2xMZzBfdW5DcVl1TnlQMlVTQnFlSWhPSl9IX0FJMzI3M3Q5UURLdFktdDlyUGdYUDFGaVc3SUM1S0VWRXVPdHNITlhLMjBjLU1kc0ZEOFZsWGlWemFZY1ZYZWhzUjdqd2REYVJOSWZuNVBySC1ZUEY2Vy1uTEdTbVktcXpxaW03VnQ0SVFUUHlIMVE2SGE0NXZkOGhhVm1mMEZHZUlRaE8wWDlPMkhPQl80dW5DQUpIRUFZdjZQRDVwSjRQVm9MUkJnblNqZTdTU3Jld094d1ZRSEo2YWxnSy1wZnBmcl9icWVaeDdqUVdrd29fX3c4OVFhTVgzeGlGdWhrUDJEMnRGa0tlbWRMaUpoaXg5Y1E2dnRTdC00dGNHMWRhcVgyVF9Ec3NrNzh3MHZ4OHlPSDFBY3lleHhfYXJLUW52SkRTdzlyTV9mSHhjTUU4dExRUk5BNDhWWUxveF9kaDRNek5WNWlXLWhnZmZDTWZOdDFhOWdfeW1nMU53enJCX096VzdTYVFDOFJtMnBfWVZqWFVYTVY3dlFvUnplTlVCYnNydElkdFRER212aWcyR29tMElJbnFORHF1TGNsdTNHMzB4S084Y09qYjM2dVNJVlhINUdsWXNxYlF1UHYybG9tUGx4M2JDQmVuLXk3OHRNYjVvTTNZLTExVnY5SzdTZ3RXMWNFcGZQYVhyT21seEE4bk43WHBIN3Q3OXZjOTUyUERFbkZJTDlWWjBuTkx2VzE2SWdBOXhHMDRLdm1Gck9wRmlNYlRpVVN1Ujl6ZjZjdXdwMHdWakZEN29GYkFQZ1Q3UlBWMGdDVkFaN0FiMEhMMG5JbEFfbTFHVS5QRG5ld19SWFdVaG1NUkVEbmxaVzJR" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1676605094?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a978a32f73295dc746acaf6456672e43", "x-ms-return-client-request-id": "true" @@ -103,43 +147,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:37 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "17ac1a9d-e0e8-4403-8b85-60735fa0d74d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6936a9b7-38f4-4e3f-95c0-b2510661ede9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1676605094", - "deletedDate": 1560877058, - "scheduledPurgeDate": 1568653058, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1676605094/147fa8dec2eb4358ac5aef77a60b98c7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1676605094", + "deletedDate": 1565114349, + "scheduledPurgeDate": 1572890349, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1676605094\u002f0f7766e6c46e41b1ae3a84736cd25bc1", "attributes": { "enabled": true, - "created": 1560877058, - "updated": 1560877058, + "created": 1565114349, + "updated": 1565114349, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1676605094?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1676605094?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981ee-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8a693cc8a5235ba78c3b5e3a8a8436fb", "x-ms-return-client-request-id": "true" @@ -148,24 +193,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:57:53 GMT", + "Date": "Tue, 06 Aug 2019 17:59:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6f3aac25-989b-45e4-9115-cbd34cb249e1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "72e1ed73-cd88-41e4-a77d-6765f289dfc7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "622448762" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExisting.json index 4598d9ce9c7f..a7b3b1357ab8 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1786251765/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1786251765\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0c-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "292079bb8d8a789046d013474f935658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ce1dce51-1cd4-46a7-b8ec-a845efd81ceb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1786251765\u002fbackup?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "292079bb8d8a789046d013474f935658", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:07:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "67312043-b55c-49e0-940d-96b6126b91bb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8f0fe6ca-a0e4-4c39-977c-027fc4975a5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "459266346" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExistingAsync.json index 56f471915634..7c990f683c2e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/BackupSecretNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/230660570/backup?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f230660570\u002fbackup?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f0-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "5eb16871a1165b591b1c672b95b94881", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "af620ee5-894b-4aca-a830-a1307c22abb5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f230660570\u002fbackup?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5eb16871a1165b591b1c672b95b94881", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:08:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b6c01a67-4ecb-432a-9e72-968a32af844b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e8eaf81a-9c6c-4e77-a893-8edad01bdba2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1041071228" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecret.json index bdafe3ad534b..c1d0eacf7d20 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1940938463?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0d-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "c18bbbdec8c427664b9a0a84095e3f9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bafea59a-b326-4c08-8292-02ca27298b05", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c18bbbdec8c427664b9a0a84095e3f9f", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:43:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2133b874-41db-4088-92b5-5de0b5c34c7a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2e8a39e5-c5f9-4e4c-9785-d297d022e399", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1940938463/ac38ac91d0a74af09c7964dbfcb09f2b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463\u002fb4c2c9e4585942199b5d1ccd25ce2ba7", "attributes": { "enabled": true, - "created": 1560804208, - "updated": 1560804208, + "created": 1565114058, + "updated": 1565114058, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1940938463?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7e2e0cafd71d95cdbe66fe60dcb113d2", "x-ms-return-client-request-id": "true" @@ -66,43 +109,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:43:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c42f0806-77a9-4f5c-ac55-e4a6e3263fca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f40458aa-6540-4408-b30c-d8bd9cb57511", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1940938463", - "deletedDate": 1560804208, - "scheduledPurgeDate": 1568580208, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1940938463/ac38ac91d0a74af09c7964dbfcb09f2b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1940938463", + "deletedDate": 1565114058, + "scheduledPurgeDate": 1572890058, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463\u002fb4c2c9e4585942199b5d1ccd25ce2ba7", "attributes": { "enabled": true, - "created": 1560804208, - "updated": 1560804208, + "created": 1565114058, + "updated": 1565114058, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1940938463/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1940938463\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f0f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "358194a35fc917b419fa3e59194cdf48", "x-ms-return-client-request-id": "true" @@ -112,18 +156,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:43:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "931979bf-3188-45a2-9efd-7700a576ae78", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1f993886-86ee-4174-b7ce-a82e2fd300ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -134,15 +178,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1940938463?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1940938463?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f14-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "13d7907855572b5f9034a161c301f202", "x-ms-return-client-request-id": "true" @@ -151,24 +196,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:43:43 GMT", + "Date": "Tue, 06 Aug 2019 17:54:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bd5f3c20-8375-4270-8040-26f45d80e887", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4c115cf7-506b-4b59-99a7-e26fb76cb280", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "2141145193" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretAsync.json index 6affca9d8a8a..e6141af14c69 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/702023456?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f1-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "339797b6c62ad096f63f15b535725b78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "09e886a0-c1d7-498c-ab21-b902d341e673", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "339797b6c62ad096f63f15b535725b78", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dd50fb0f-fa0d-4780-b041-7ce26a846b75", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75c1d0a8-97d3-4deb-a2fe-3a83da1968c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/702023456/236550c57a0a43e0a42724103cd582af", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456\u002fd5b9ad983dc243bda299c129bbc5b95b", "attributes": { "enabled": true, - "created": 1560804469, - "updated": 1560804469, + "created": 1565114366, + "updated": 1565114366, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/702023456?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8aae8ca0c1bb7747d819ef3f044cd67d", "x-ms-return-client-request-id": "true" @@ -66,43 +109,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7043b1eb-c27b-4989-a78c-7135b19f5345", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5fd5124b-6c53-4d17-9821-0ef90638dd13", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/702023456", - "deletedDate": 1560804469, - "scheduledPurgeDate": 1568580469, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/702023456/236550c57a0a43e0a42724103cd582af", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f702023456", + "deletedDate": 1565114366, + "scheduledPurgeDate": 1572890366, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456\u002fd5b9ad983dc243bda299c129bbc5b95b", "attributes": { "enabled": true, - "created": 1560804469, - "updated": 1560804469, + "created": 1565114366, + "updated": 1565114366, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/702023456/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f702023456\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981f3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f81d368d3e8aff13a59dc5b32ac22bd1", "x-ms-return-client-request-id": "true" @@ -112,18 +156,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bc0604dc-4263-4d7c-9531-caf7d704de12", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b19d00ed-ecbc-400e-a660-5fe5c1965437", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -134,41 +178,42 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/702023456?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f702023456?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b92445d36abae31ba7d22e2dba847e75", + "x-ms-client-request-id": "9d96ec2e6ede66950067ebc7fd4d8630", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:48:04 GMT", + "Date": "Tue, 06 Aug 2019 17:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a4dfc4ef-8591-4c81-a680-0f19d3a38db7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f4700382-b518-4a5c-8f36-8eee64360e57", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "2131429183" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExisting.json index f6129bce205a..a96df9427c23 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/321657221?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f321657221?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f16-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "674cd773a1f4d883453c17c018e17ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "69f28c28-b06b-4f99-9e6f-7f078a90900c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f321657221?api-version=7.0", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f16-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "674cd773a1f4d883453c17c018e17ffd", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:09:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e91067c9-00dd-4ba4-85a4-a1b13adf3c93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "df93d49d-cf0f-4043-9992-0bb6d657eaf2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1058431388" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExistingAsync.json index 71442e1957a6..0a8a63209496 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/DeleteSecretNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/353004550?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f353004550?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fc-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "a4d0de474c184b01522ca13a7851ff12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "abad1b17-030b-42ff-8bcb-61f931e8b5ae", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f353004550?api-version=7.0", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a4d0de474c184b01522ca13a7851ff12", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:09:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a67c371b-3e47-48fa-a4eb-a8205002f629", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "924a1971-fbd1-4534-9627-212af5d145b5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1098574795" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecret.json index 45012cf7ad4d..937624d1fd18 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/274866081?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f17-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "4191b70573be306b726c410d1f8293f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "54c8da2d-9331-4727-8692-eb1be80b5d27", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f17-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4191b70573be306b726c410d1f8293f2", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:43:44 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "510e0d2b-8efc-4c69-8afa-f06276cc061a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a5bbed05-2de4-4278-b21d-5f5bb16d0e54", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/274866081/292927f5a1d4464595a2b291a1cf9432", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081\u002f9baa2366fa86493184ce5d2a97099ec3", "attributes": { "enabled": true, - "created": 1560804224, - "updated": 1560804224, + "created": 1565114074, + "updated": 1565114074, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/274866081?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f18-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "82dcf87e06ac3cfd8ff6995e793abc7b", "x-ms-return-client-request-id": "true" @@ -66,43 +109,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:43:44 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aab5f0ba-b142-48d7-99f5-e01b6cafb4d5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "81fad142-d431-4a3c-965f-31ff5f61e5c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/274866081", - "deletedDate": 1560804224, - "scheduledPurgeDate": 1568580224, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/274866081/292927f5a1d4464595a2b291a1cf9432", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f274866081", + "deletedDate": 1565114074, + "scheduledPurgeDate": 1572890074, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081\u002f9baa2366fa86493184ce5d2a97099ec3", "attributes": { "enabled": true, - "created": 1560804224, - "updated": 1560804224, + "created": 1565114074, + "updated": 1565114074, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/274866081?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f274866081?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f1d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "37e90b1dd7ecf6623d2a8214151c3c56", "x-ms-return-client-request-id": "true" @@ -112,43 +156,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:00 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc6c3194-61e1-4740-a907-1304040ddc07", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "76ecf1bf-a022-461f-861f-84530ed597e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/274866081", - "deletedDate": 1560804224, - "scheduledPurgeDate": 1568580224, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/274866081/292927f5a1d4464595a2b291a1cf9432", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f274866081", + "deletedDate": 1565114074, + "scheduledPurgeDate": 1572890074, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f274866081\u002f9baa2366fa86493184ce5d2a97099ec3", "attributes": { "enabled": true, - "created": 1560804224, - "updated": 1560804224, + "created": 1565114074, + "updated": 1565114074, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/274866081?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f274866081?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f1f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b7ba7afd0879e40a17e2ec079f51bcab", "x-ms-return-client-request-id": "true" @@ -157,24 +202,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:00 GMT", + "Date": "Tue, 06 Aug 2019 17:54:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "323f4bb6-002c-4bec-97ca-17626a54a5fe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "572136bc-4662-43be-9852-e9c8b0d73e49", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "534960661" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretAsync.json index cbef9965fefd..3f5eb4d94f6b 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/205165804?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fd-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "257d8d7f577c8746818a7309da83bb7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a5af892d-c7e9-41c4-9da0-3bcf1bdd9571", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "257d8d7f577c8746818a7309da83bb7c", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae7290dd-d0eb-4615-a6b3-948920e9ea9e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0d574d1c-f28d-458d-9039-58852812723d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/205165804/f38a61891c9440cba8ecc8a2a2052d54", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804\u002f3bd4a7b2527b45c18b85e976d33fba6b", "attributes": { "enabled": true, - "created": 1560804485, - "updated": 1560804485, + "created": 1565114392, + "updated": 1565114392, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/205165804?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981fe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "54a758eaedcc6eb7d140eada0712fd4f", "x-ms-return-client-request-id": "true" @@ -66,43 +109,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "afefeb65-acba-4086-b8a9-fd599668a14a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1794ea90-e8ee-4386-90b1-ecdefd844ebe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/205165804", - "deletedDate": 1560804485, - "scheduledPurgeDate": 1568580485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/205165804/f38a61891c9440cba8ecc8a2a2052d54", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f205165804", + "deletedDate": 1565114392, + "scheduledPurgeDate": 1572890392, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804\u002f3bd4a7b2527b45c18b85e976d33fba6b", "attributes": { "enabled": true, - "created": 1560804485, - "updated": 1560804485, + "created": 1565114392, + "updated": 1565114392, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/205165804?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f205165804?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298203-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1fda2a85e94ce12142113578eb583c86", "x-ms-return-client-request-id": "true" @@ -112,43 +156,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79ee889c-a9c0-48d6-bf9b-9a91d534cc98", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bed735ea-bdf1-4070-a537-1bc3263de8fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/205165804", - "deletedDate": 1560804485, - "scheduledPurgeDate": 1568580485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/205165804/f38a61891c9440cba8ecc8a2a2052d54", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f205165804", + "deletedDate": 1565114392, + "scheduledPurgeDate": 1572890392, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f205165804\u002f3bd4a7b2527b45c18b85e976d33fba6b", "attributes": { "enabled": true, - "created": 1560804485, - "updated": 1560804485, + "created": 1565114392, + "updated": 1565114392, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/205165804?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f205165804?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298205-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2a4134750b759b533d04644ed5063e90", "x-ms-return-client-request-id": "true" @@ -157,24 +202,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:48:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ff30677-0bbf-4699-a684-efca3dd3188a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "787e945e-1082-4ea0-84e8-6cbd38aed5ee", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "646464337" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExisting.json index b1259da3ec76..7400f9840643 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1385372551?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1385372551?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f21-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "ad0a35d88ba2c48bb25056dfb1d6fa24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "24cc219f-c9ba-4732-a716-462ed465eec2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1385372551?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f21-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ad0a35d88ba2c48bb25056dfb1d6fa24", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:07:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f866dcd1-439b-4f4f-ac91-781e28a98090", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aca7f1c2-58a5-4087-8983-69bb61361e38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "613707719" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExistingAsync.json index dd83102b641f..de0e051e925c 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/922873626?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f922873626?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298207-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "818fb5d891a8ed736a652a61ee6a187a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c73957d4-d19b-431d-8631-5781b782e02d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f922873626?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298207-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "818fb5d891a8ed736a652a61ee6a187a", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:08:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0702de75-e95b-4ce9-861b-6a03f8eabac0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e459ed89-010f-4c9c-9421-026541471cd9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "818369658" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecrets.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecrets.json index 946dadaf47f0..4d7d0fc74fbd 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecrets.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecrets.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601130?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f22-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "ad32e0f8472653dc8b7182027f3a2031", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b2066d35-b0d8-4bd1-bb67-249e4725cc24", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f22-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ad32e0f8472653dc8b7182027f3a2031", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:00 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5646a708-910d-4860-b9dd-158c7ccb2b83", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7ba87640-373c-4cf3-afca-e1b8da25255a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601130/8b2beff5f46641f6a3d36542ada3b68e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130\u002fef5f6df70291424ebfa23d02de83561c", "attributes": { "enabled": true, - "created": 1560804240, - "updated": 1560804240, + "created": 1565114090, + "updated": 1565114090, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601130?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f23-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2a59e651f1939336277981465313c2bb", "x-ms-return-client-request-id": "true" @@ -66,44 +109,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:00 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "007f9a28-d105-4a11-bf11-76475d993d03", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9c52c1ab-7f16-4982-b413-d09dfb9b59b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601130", - "deletedDate": 1560804240, - "scheduledPurgeDate": 1568580240, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601130/8b2beff5f46641f6a3d36542ada3b68e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601130", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130\u002fef5f6df70291424ebfa23d02de83561c", "attributes": { "enabled": true, - "created": 1560804240, - "updated": 1560804240, + "created": 1565114090, + "updated": 1565114090, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601131?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601131?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f24-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a556339e431ac36c3efd56d0e6bc051b", "x-ms-return-client-request-id": "true" @@ -115,41 +159,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:00 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d8ed2cb1-d934-4473-9477-c3e7c7376688", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "80afbb81-ffbe-431c-bbb6-23c5a6584088", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601131/4fa61ff6c3af4ed69b41eebb9cdbb733", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601131\u002fb9d15d8688d04fe4b5e944e384207225", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601131?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601131?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f25-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "104c9bfd90a006beaa9e86acc595ff78", "x-ms-return-client-request-id": "true" @@ -159,44 +204,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4d0c0289-8272-45cf-b73a-3da23482f4c2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b1f522cc-339a-4dd1-912c-6467116b9dbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601131", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601131/4fa61ff6c3af4ed69b41eebb9cdbb733", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601131", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601131\u002fb9d15d8688d04fe4b5e944e384207225", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601132?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601132?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f26-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4b63c6af7ae40d177995eb959b66ac6a", "x-ms-return-client-request-id": "true" @@ -208,41 +254,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5ba76df2-8b5b-44f1-9154-959bf1335e43", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dc2d93df-353e-48a7-8e0a-e61a7c98f517", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601132/1e08c589c7e244b3ab3b4bf67c3f4d86", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601132\u002f9cf709d8d88d46c7b4eba4badc40c73f", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601132?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601132?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f27-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b8486573b1c60e1b754ffb7bbcbffea9", "x-ms-return-client-request-id": "true" @@ -252,44 +299,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cb54423e-de9c-471b-8d2f-05a36b632329", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f04c493d-e6df-4eb6-a167-cc705674b0af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601132", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601132/1e08c589c7e244b3ab3b4bf67c3f4d86", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601132", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601132\u002f9cf709d8d88d46c7b4eba4badc40c73f", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601133?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601133?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f28-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1f21ddfdb9598237833e970aa5286a44", "x-ms-return-client-request-id": "true" @@ -301,41 +349,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5926b21e-809e-427e-8444-4d67f75284a7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "30f790ce-66a8-4f0e-8f1d-2db7d637baae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601133/3f6b1810042a4eb2be783f8ebdd66d0a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601133\u002fa5d66d2ba8c347949559b3d6a68ab201", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601133?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601133?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f29-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "60391bf1474cfdb1ab55d6957f9b51b9", "x-ms-return-client-request-id": "true" @@ -345,44 +394,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90127855-6e07-4aef-8757-6b6bbd731dec", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "efd51f44-e1b0-4925-8498-7e05ebbb103b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601133", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601133/3f6b1810042a4eb2be783f8ebdd66d0a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601133", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601133\u002fa5d66d2ba8c347949559b3d6a68ab201", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601134?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601134?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bd9842978c45b9112ec634881a10694c", "x-ms-return-client-request-id": "true" @@ -394,41 +444,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5c98fd03-486b-4f9d-91a0-3c52b02affd8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fc52b6fc-d4c8-49df-ac73-89f803e993d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601134/1d7983e094de4dabbdb5656cf96a10e9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601134\u002fca15380a04144df3a146b4985366ebd9", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601134?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601134?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a18ab7e49e86b65c2c237404e3a103e8", "x-ms-return-client-request-id": "true" @@ -438,44 +489,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8f9c154e-34ef-440f-8660-bcc8b2ff0274", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1a98c75d-c3ed-4239-828b-e4bf683f674d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601134", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601134/1d7983e094de4dabbdb5656cf96a10e9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601134", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601134\u002fca15380a04144df3a146b4985366ebd9", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601135?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601135?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6273ddedac9064fe098031861229e39a", "x-ms-return-client-request-id": "true" @@ -487,41 +539,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f73dde0f-b371-4957-a5fd-4556f31ba589", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5d45fc5d-8534-4eae-9852-513a85bf5a6c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601135/5128c20ea359400baba0a3ba4be1d2bb", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601135\u002f5fc5b98bd22b4738afd2e84a346320c5", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601135?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601135?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c8b08aebb010f933e6e29121180dd58c", "x-ms-return-client-request-id": "true" @@ -531,44 +584,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "868e7d23-817a-4e14-9d97-a74d967fdf7d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "180bfb38-41cd-443a-8d27-561595e9814b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601135", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601135/5128c20ea359400baba0a3ba4be1d2bb", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601135", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601135\u002f5fc5b98bd22b4738afd2e84a346320c5", "attributes": { "enabled": true, - "created": 1560804241, - "updated": 1560804241, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601136?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601136?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3c9a4cc3069d37bcb82597056cd5a303", "x-ms-return-client-request-id": "true" @@ -580,41 +634,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae56982a-fecd-454c-bd86-8ec5e07ada1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4f5f0fc2-d58c-4fac-a915-46363ff7e8fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601136/8e9485d34715489fb35568b296c4f123", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601136\u002f73aba08464d14fb0a09f847c3aa149b5", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601136?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601136?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f2f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5918d9403af13dd7a97a7cad1bdd4cfb", "x-ms-return-client-request-id": "true" @@ -624,44 +679,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a4f8082-033b-4f12-9907-e096475f22d3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "44de7018-360b-43f6-9382-c47093862ca8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601136", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601136/8e9485d34715489fb35568b296c4f123", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601136", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601136\u002f73aba08464d14fb0a09f847c3aa149b5", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601137?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601137?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f30-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c6c3a4aaa78ee4fdcd780feb182d8c10", "x-ms-return-client-request-id": "true" @@ -673,41 +729,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "50ef1136-c8ef-4586-9b75-8bcd9b2520b3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ba4c981c-f4cc-4fb3-acc9-79760a68f679", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601137/a3aaea0b54ae4b1e9c1dcbacb960087a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601137\u002f2d38eef553694ee6bfb8b9a6a60cdba2", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601137?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601137?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f31-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3ee18e3e7cf5889b745d92238a0e1cda", "x-ms-return-client-request-id": "true" @@ -717,44 +774,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "043938f3-00af-4dc8-ae32-0eec464ac65d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aad70e71-00eb-4112-92e8-5f8a5cf01926", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601137", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601137/a3aaea0b54ae4b1e9c1dcbacb960087a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601137", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601137\u002f2d38eef553694ee6bfb8b9a6a60cdba2", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601138?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601138?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f32-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c75b9bd9dc119974dc338b782aec247c", "x-ms-return-client-request-id": "true" @@ -766,41 +824,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d38ad1f4-4169-4ca6-bb21-ed7863000766", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b772cade-4741-4cc8-8f80-daebb1cb1ad9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601138/70e9e945c4fd493cb449726fcd79f963", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601138\u002f3a7b68bfcec04c06b1033cbcb7941372", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601138?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601138?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f33-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8d6e6bed0dfc2d06093b523014da5abf", "x-ms-return-client-request-id": "true" @@ -810,44 +869,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e47aa52c-1a39-40d9-9745-70c705ed70fe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f7d1d616-dfc9-4c18-9105-54bc0a7e98cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601138", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601138/70e9e945c4fd493cb449726fcd79f963", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601138", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601138\u002f3a7b68bfcec04c06b1033cbcb7941372", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601139?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601139?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f34-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7c11355cc4d262ff194762c1f0225d87", "x-ms-return-client-request-id": "true" @@ -859,41 +919,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ca14f92d-38d4-4ed0-9618-975681fcdb84", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dbf3a7a3-9fc9-46b4-9506-0545713fa944", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601139/9080a660df294917a8abba79b942eef5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601139\u002fd5283c4cc22d4d4f9988a0d8a3b9e569", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/16588601139?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601139?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f35-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1e3516398f9fccde952dbed68a448401", "x-ms-return-client-request-id": "true" @@ -903,44 +964,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0dbf2b3b-9b82-42c5-97f7-79ef97c52136", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9be0d206-50eb-4c54-aff5-a8d7cabc9ce1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601139", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601139/9080a660df294917a8abba79b942eef5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601139", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601139\u002fd5283c4cc22d4d4f9988a0d8a3b9e569", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011310?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011310?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f36-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f51cccd9a8da29a96c0c73b4aa443ce6", "x-ms-return-client-request-id": "true" @@ -952,41 +1014,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7aaf061f-8f8d-422d-b401-9c8913a03946", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5e321f7d-32e4-42b9-a28f-02e451791a83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011310/301c33953eb940478331ac36462d70c6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011310\u002fa157a57a81e04367954bf5547d516822", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011310?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011310?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f37-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fef7cadd3ba5cc1f5645e6a40528d7d5", "x-ms-return-client-request-id": "true" @@ -996,44 +1059,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dde4cb7d-ed06-46dc-a302-72e3a52f534c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d9e8883d-3930-4597-99e5-d0b40ea86954", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011310", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011310/301c33953eb940478331ac36462d70c6", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011310", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011310\u002fa157a57a81e04367954bf5547d516822", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011311?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011311?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f38-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "24e860c3680590ad6c0cb2921b292151", "x-ms-return-client-request-id": "true" @@ -1045,41 +1109,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a1fb378-9e12-4033-8ce0-1d1399841be5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8f31a972-fc82-4ba3-a185-088c29dc7bea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011311/98bffbb147f94dba90eee8e3d7dd1927", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011311\u002f83be6a3e405541c39f65ab32108f011a", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011311?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011311?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f39-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c0f8d8f1864c9d5cad4f9e95c1052343", "x-ms-return-client-request-id": "true" @@ -1089,44 +1154,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c778b3c6-2416-4b26-910e-7bfd7bf0923b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a451b9e2-8327-4341-a946-9cf8bb78008a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011311", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011311/98bffbb147f94dba90eee8e3d7dd1927", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011311", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011311\u002f83be6a3e405541c39f65ab32108f011a", "attributes": { "enabled": true, - "created": 1560804242, - "updated": 1560804242, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011312?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011312?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4af19e34185b75e01d669199898cb12d", "x-ms-return-client-request-id": "true" @@ -1138,41 +1204,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4f47dc3c-9a08-43b7-8672-c738e3b3ea9c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "36ff202f-be67-4a20-82c3-4b70d8903a30", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011312/73530cb0c44d4c83ab05bafe55184819", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011312\u002f64a7ac12943942e4ada2b38d2db9fd4b", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011312?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011312?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2db39524172f3d88044b77b5c917cf67", "x-ms-return-client-request-id": "true" @@ -1182,44 +1249,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6d96ebca-d8de-4ca6-a37a-e49329a84c4f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "11ca364e-ed62-4683-b479-82962765fc86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011312", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011312/73530cb0c44d4c83ab05bafe55184819", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011312", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011312\u002f64a7ac12943942e4ada2b38d2db9fd4b", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011313?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011313?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7d5d6ee8d738d8f6f783a2e6f4c31420", "x-ms-return-client-request-id": "true" @@ -1231,41 +1299,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f977c31b-a4ad-467a-a998-e52a8f9f56e7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9194dd44-e1e5-4ffa-87fc-6c2435fd7a5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011313/99b5e6d3efae4e0ab101749500b4257b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011313\u002ffa928b9a9803462aa3eafd6911fc7682", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011313?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011313?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2c71719ef6521d1415b3450fa12aac05", "x-ms-return-client-request-id": "true" @@ -1275,44 +1344,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "07950058-da72-4346-95eb-522232845245", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9b745e5b-f461-46b0-9f4f-ec6e277fef46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011313", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011313/99b5e6d3efae4e0ab101749500b4257b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011313", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011313\u002ffa928b9a9803462aa3eafd6911fc7682", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011314?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011314?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1bb02a96342e4cf49eda35ac74a24840", "x-ms-return-client-request-id": "true" @@ -1324,41 +1394,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7202aeef-dbe8-460e-b5a1-94237bdfe016", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3aeb3e6e-8451-4ba0-9568-d28b0d5e343c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011314/bf356ec5329a4941979800cc5315233b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011314\u002f728f3737915d4ec5ae1d40275e901cca", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011314?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011314?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f3f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "57175637a3a6f2155940678491e637cc", "x-ms-return-client-request-id": "true" @@ -1368,44 +1439,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "91ff9b1a-7e70-4e1d-a734-6930da391828", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6ebdab68-7aaf-49c2-92ae-7f100ab5127d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011314", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011314/bf356ec5329a4941979800cc5315233b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011314", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011314\u002f728f3737915d4ec5ae1d40275e901cca", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011315?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011315?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f40-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ca4f9dd7f8126af27d248d77c068a873", "x-ms-return-client-request-id": "true" @@ -1417,41 +1489,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "68436d61-609d-44cc-aa09-be4a13768a64", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cbc26aaf-c652-4ea1-b6b1-8bfac1407358", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011315/b95092921c77493083e4aa61ac250c75", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011315\u002f6a32a1bfc7304fc6bcb6e7392cc47d75", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011315?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011315?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f41-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4ad8056b5413f35f15bec1edcc6fbbb8", "x-ms-return-client-request-id": "true" @@ -1461,44 +1534,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9f54ff0d-c488-4eef-8503-1fffd0ade772", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7bd64863-e438-45be-b3df-dee575275fa8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011315", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011315/b95092921c77493083e4aa61ac250c75", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011315", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011315\u002f6a32a1bfc7304fc6bcb6e7392cc47d75", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011316?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011316?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f42-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d7d469a37e523e2d64acda81159d32f1", "x-ms-return-client-request-id": "true" @@ -1510,41 +1584,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "37c4bda8-9b32-4914-9e77-c228be691c2a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ca7b3db2-1be5-49fa-bc70-603ca605d513", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011316/454a0f259cd242b398a41c3526e46f24", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011316\u002f31f484802c324bb68be33dd85afbfd31", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011316?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011316?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f43-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8c19f397ec0d82b93e5bb45437049d0e", "x-ms-return-client-request-id": "true" @@ -1554,44 +1629,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ff6336dd-ce43-4edf-9535-521b6fef8871", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "16fa7fcd-773e-4b69-b345-ddcb3ce45d62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011316", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011316/454a0f259cd242b398a41c3526e46f24", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011316", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011316\u002f31f484802c324bb68be33dd85afbfd31", "attributes": { "enabled": true, - "created": 1560804243, - "updated": 1560804243, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011317?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011317?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f44-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "56d4d568d193ec20d79ae6667addde77", "x-ms-return-client-request-id": "true" @@ -1603,41 +1679,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7fbad1a1-4b8a-432f-876f-6c8688636c54", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "944d3aae-187b-46e3-b699-42864906d90c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011317/64d90cd9b00545639cd3042808215863", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011317\u002fe24f8d966d714768a0d0e26da6695d8f", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011317?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011317?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f45-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d956cf8b2f55b6aaaf5298f7c9d80660", "x-ms-return-client-request-id": "true" @@ -1647,44 +1724,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fde0d873-199d-4457-adfe-723414ecb851", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ba52e059-9400-4a97-a6b3-aba1392b0f5c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011317", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011317/64d90cd9b00545639cd3042808215863", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011317", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011317\u002fe24f8d966d714768a0d0e26da6695d8f", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011318?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011318?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f46-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3f18cc0fdbc9c65ed22cb47305520861", "x-ms-return-client-request-id": "true" @@ -1696,41 +1774,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ad342fdc-2579-42d5-9a6c-e22d37bed5e4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5bff32c6-fde6-4943-9cde-1b35e851eb58", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011318/9e0cfb8508b746e9a94c6137bd76562c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011318\u002f4d039eb192ff46a390029a0b9cee166f", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011318?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011318?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f47-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "68c93d7cc4ae39b82b1da740382923fe", "x-ms-return-client-request-id": "true" @@ -1740,44 +1819,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6560ce5e-56a7-4ded-ae1a-74ed1bdcf01f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "15f83ec7-e976-4f51-8076-2d7e1e856b50", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011318", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011318/9e0cfb8508b746e9a94c6137bd76562c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011318", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011318\u002f4d039eb192ff46a390029a0b9cee166f", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011319?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011319?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f48-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ae5786939ec4b0ae708f06287a36b15c", "x-ms-return-client-request-id": "true" @@ -1789,41 +1869,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3f6c0d28-5941-43ba-9141-fe4bfa4d9aae", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d51b446d-2735-4ccf-bb07-8c5b7ea05e38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011319/873652d6ac484b1fad24474edbac881b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011319\u002f3c7ddde358d34f82b06fe5687ee9d796", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011319?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011319?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f49-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8c7a37499e0f4ab113df14ac341d8da9", "x-ms-return-client-request-id": "true" @@ -1833,44 +1914,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3ace6420-05b3-4031-b49c-d103cb6d9398", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d7df1293-5b13-4f39-a830-ab5669bb294c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011319", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011319/873652d6ac484b1fad24474edbac881b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011319", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011319\u002f3c7ddde358d34f82b06fe5687ee9d796", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011320?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011320?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7fe0b6095afbdd9c8f18f71ebd8fbef4", "x-ms-return-client-request-id": "true" @@ -1882,41 +1964,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d7209983-6fd1-45ed-94ee-17f3c1fb0e10", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "433dc8ea-ecb4-4f02-a5ff-2d270de0e563", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011320/842643b8ab1646d5973e4390023e5e30", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011320\u002fe59055471fa949c7b4a91be0c7f9f328", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011320?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011320?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "01f74a6c96aef4eed40c9ae48a017c53", "x-ms-return-client-request-id": "true" @@ -1926,44 +2009,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b237c43-9811-417a-9511-175dbbad6b7a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "048da34c-7971-48fc-98c5-e088eec8d7d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011320", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011320/842643b8ab1646d5973e4390023e5e30", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011320", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011320\u002fe59055471fa949c7b4a91be0c7f9f328", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011321?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011321?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c41f5c023156ef619a9dfcf7a7938d84", "x-ms-return-client-request-id": "true" @@ -1975,41 +2059,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "05d1c3fe-9246-444c-84d2-308ecbb5dfeb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39478bb1-3162-4eed-bb33-0eb80cc73632", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011321/8c6ee1d2ac364c83b6f52f154b549ffe", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011321\u002fa983668660234895ad56072525583a7e", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011321?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011321?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e93f20218b2672fbc7ebaaeec0b8538d", "x-ms-return-client-request-id": "true" @@ -2019,44 +2104,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7ab0bcce-cbfd-4bad-8bdb-2c94d1648a2c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "df2774bd-27d3-49e5-8d17-bbd5e30510ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011321", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011321/8c6ee1d2ac364c83b6f52f154b549ffe", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011321", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011321\u002fa983668660234895ad56072525583a7e", "attributes": { "enabled": true, - "created": 1560804244, - "updated": 1560804244, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011322?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011322?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "601ba49cf9703a9ee80766119af74d40", "x-ms-return-client-request-id": "true" @@ -2068,41 +2154,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6eebf5ff-2619-4bc5-8e58-ed2f63036728", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7125b557-5151-400f-8dc4-eb68a4a9d2af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011322/140ea6e777144c469785ba36b4b39369", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011322\u002fe07685dbbcfa4da68ddd78e23db6b92b", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011322?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011322?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f4f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6ac3157f92c2762c61acfd6a87732fe2", "x-ms-return-client-request-id": "true" @@ -2112,44 +2199,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7b05ec0a-d44b-4751-9eb5-b4b7146a4734", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ee6eec09-2f00-4530-a7cf-5ef4d4cb0181", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011322", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011322/140ea6e777144c469785ba36b4b39369", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011322", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011322\u002fe07685dbbcfa4da68ddd78e23db6b92b", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011323?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011323?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f50-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "025a6f492c7827148105011f25e9d8d0", "x-ms-return-client-request-id": "true" @@ -2161,41 +2249,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b6af64f0-f125-4029-ae2e-70dd6dd93c52", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "80e3c7a9-4102-47c4-bbd3-eaabd101161e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011323/47366d479eeb4942997f8a4a80b9cb17", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011323\u002f328ace03871a46b2a79cc4de77e90f7c", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011323?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011323?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f51-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "aa6e699ee9f40acb77a4ffc3fc34b375", "x-ms-return-client-request-id": "true" @@ -2205,44 +2294,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4eedbb77-cb46-4e3e-9046-de7f1652bf9c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "90143fd2-cbe2-4f40-9268-43f7932b5164", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011323", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011323/47366d479eeb4942997f8a4a80b9cb17", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011323", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011323\u002f328ace03871a46b2a79cc4de77e90f7c", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011324?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011324?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f52-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2ac783d84b9c52c8019ce8bd910d5177", "x-ms-return-client-request-id": "true" @@ -2254,41 +2344,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9c8dcf96-eeb6-4e60-b362-aae454815037", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "32bf67d5-2177-44e1-8960-780a1cb6e464", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011324/b22e9711bae7465fad60736b6c2c88c3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011324\u002f7810c2b73ebc43a0bc6fe3a1962ceff9", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011324?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011324?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f53-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1dcb2dd484045feea4508ad32d502b4d", "x-ms-return-client-request-id": "true" @@ -2298,44 +2389,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "89e75577-276c-4b6a-bf30-bb5f069e548b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "81edf07c-11a4-4f68-b205-961141736b02", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011324", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011324/b22e9711bae7465fad60736b6c2c88c3", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011324", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011324\u002f7810c2b73ebc43a0bc6fe3a1962ceff9", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011325?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011325?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f54-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a1468c52ad225333a11ba958010e786a", "x-ms-return-client-request-id": "true" @@ -2347,41 +2439,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0b6ef878-a666-48a7-ba1d-5aa353977aba", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7f92eca6-90d1-497d-b60c-e6759bf62d44", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011325/dea6fbf7643a47349dbb8b968790b471", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011325\u002f9910870a9df84a3c8be880eaed5e35ec", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011325?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011325?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f55-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ceef8752956854709567864cc0f425b0", "x-ms-return-client-request-id": "true" @@ -2391,44 +2484,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f4dc9674-d786-445d-9761-a747734f1c31", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6a74aa21-910c-47fa-bb3a-c895acf64846", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011325", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011325/dea6fbf7643a47349dbb8b968790b471", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011325", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011325\u002f9910870a9df84a3c8be880eaed5e35ec", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011326?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011326?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f56-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "056a9a70b0c62655f9787ce8da965e96", "x-ms-return-client-request-id": "true" @@ -2440,41 +2534,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "185fccc3-f198-43d5-bc6d-1a88c1954621", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "195f0c69-cd40-4058-9d7f-06827ae046ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011326/1bfc443fb93d40f1be7a53931b5486bd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011326\u002fca26597a2546480395680d3499e4b020", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011326?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011326?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f57-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a68020d75c61bce51bf20bba26e792ad", "x-ms-return-client-request-id": "true" @@ -2484,44 +2579,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "75b12314-ce27-4207-bf7b-df304aefc996", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "efcd269c-5539-4819-89cd-42daa3c6c8de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011326", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011326/1bfc443fb93d40f1be7a53931b5486bd", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011326", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011326\u002fca26597a2546480395680d3499e4b020", "attributes": { "enabled": true, - "created": 1560804245, - "updated": 1560804245, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011327?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011327?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f58-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "66e7f9f673a3a2a331c8d5ef198779ff", "x-ms-return-client-request-id": "true" @@ -2533,41 +2629,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "afb3d1ad-1e38-46e9-b056-bc7f75634594", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "37a80edf-c98c-4ec4-81ef-ca4a08c15189", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011327/d01e3475d403428fb2c6aca75f3bed1d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011327\u002ffff929548aab4099a262f563781b0af7", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011327?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011327?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f59-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a074f0097f73144eb5aee9d4a49aff12", "x-ms-return-client-request-id": "true" @@ -2577,44 +2674,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "77794e4f-837a-4a50-938d-cf69927143b1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eee4aad1-2a04-495d-824f-d71f17ee1145", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011327", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011327/d01e3475d403428fb2c6aca75f3bed1d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011327", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011327\u002ffff929548aab4099a262f563781b0af7", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011328?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011328?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e1f2cee5f8ae63f27cde749887f5a293", "x-ms-return-client-request-id": "true" @@ -2626,41 +2724,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6d35efe5-d4c0-435f-b8e5-96bf74313470", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4bbb39c1-9c78-4ddd-84ed-dcf60c158c98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011328/77bcc8f00f274ac893a8a3fa12a70f2b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011328\u002f04a80489d4fe40d9a1ede34e754f370c", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011328?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011328?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "36b10c79f2737639aad3b0f48acffe97", "x-ms-return-client-request-id": "true" @@ -2670,44 +2769,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "53a3b5b3-7da0-4703-ba31-5d37bfa16d66", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "da74f1d0-a0c8-4949-a943-d1902e6d1691", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011328", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011328/77bcc8f00f274ac893a8a3fa12a70f2b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011328", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011328\u002f04a80489d4fe40d9a1ede34e754f370c", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011329?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011329?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4a09c3c997951050fd1023950bb68dc0", "x-ms-return-client-request-id": "true" @@ -2719,41 +2819,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5830f7a9-85bf-4753-a6c8-b057cedf3ea1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cd7aa5d7-b8f0-4468-8832-296fd691fb31", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011329/ce4b64b184e7475fa51f010478c0de2f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011329\u002f57d8f72963f04b95a8be55832a7f9426", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011329?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011329?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "975b550bc9e9f29e957b37db47fed9ad", "x-ms-return-client-request-id": "true" @@ -2763,44 +2864,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7430210-6e69-4f6a-88cc-1f22cf23cb67", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a638d516-e207-43f1-bd9b-888cf60f6992", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011329", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011329/ce4b64b184e7475fa51f010478c0de2f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011329", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011329\u002f57d8f72963f04b95a8be55832a7f9426", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011330?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011330?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c3cedddf58ebe1fdbba03862cfa46bf3", "x-ms-return-client-request-id": "true" @@ -2812,41 +2914,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dd3dc1a4-87a3-42cf-9d1b-64c3a79b410e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7b15cd46-0e83-4bbb-ae17-c479331ae8a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011330/b4be429cf09d4544942c575299d0b55c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011330\u002ff62b90be69ca4a659c801658e70c3897", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011330?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011330?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f5f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "34e9f046667400ad2416b51a5f75c9ff", "x-ms-return-client-request-id": "true" @@ -2856,44 +2959,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cab76df5-07e6-4868-8f3d-5ee9f31bf3f9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "454b57c0-6ed8-492e-8d8b-4b209001cd08", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011330", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011330/b4be429cf09d4544942c575299d0b55c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011330", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011330\u002ff62b90be69ca4a659c801658e70c3897", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011331?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011331?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f60-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2eb57637c9e7b3d45779dc49903c23f0", "x-ms-return-client-request-id": "true" @@ -2905,41 +3009,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e7eec4a3-3c45-4f34-adcf-9d52f9075fe4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cca9aa9f-d0cc-4dc4-b841-750465bf2008", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011331/d353256ef032476eb9cf44b6ff3009d8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011331\u002f3ea71b4afde843759d4998ef6eb4f822", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011331?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011331?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f61-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5695440fa41479392fce9fd4a2e38246", "x-ms-return-client-request-id": "true" @@ -2949,44 +3054,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0cab307e-b473-420d-987d-a6ff6e65a135", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6e67c947-0cd2-45af-b975-d56a4df0df68", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011331", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011331/d353256ef032476eb9cf44b6ff3009d8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011331", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011331\u002f3ea71b4afde843759d4998ef6eb4f822", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011332?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011332?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f62-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "582a39d63cef7d0b1b36ddfa8a646fe7", "x-ms-return-client-request-id": "true" @@ -2998,41 +3104,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2c0e84d0-198e-46af-a618-dbc3f9d9603e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4d7653b6-11c4-4691-9946-2d9d243d4242", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011332/35ddaa6fc4ba43fb8e35b2b8338dfeb1", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011332\u002f7733c4075e4a4c4db637ad8be9f58b93", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011332?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011332?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f63-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1b0ac4f372e093ea3d3cfe1829001074", "x-ms-return-client-request-id": "true" @@ -3042,44 +3149,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e4c7e41a-fc33-4d13-a9b0-94721f998a0e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dc986e3e-7aa2-4aca-a736-ff93d9ae5b73", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011332", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011332/35ddaa6fc4ba43fb8e35b2b8338dfeb1", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011332", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011332\u002f7733c4075e4a4c4db637ad8be9f58b93", "attributes": { "enabled": true, - "created": 1560804246, - "updated": 1560804246, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011333?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011333?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f64-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "577295f7cb11d30138173bdec63eeecb", "x-ms-return-client-request-id": "true" @@ -3091,41 +3199,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0a825518-e756-4d83-8e2e-4db310641dea", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cc3337b4-d1b7-4b18-9e1b-7bd030108f48", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011333/f373a71bef30437ca9067d152f0424dd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011333\u002f29bed21bb8914e76af77a94f89da1bc4", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011333?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011333?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f65-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dde1b75f66d964654e971bb23ef2531a", "x-ms-return-client-request-id": "true" @@ -3135,44 +3244,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "689f8a92-a3ba-474f-bb0b-d25fc999b658", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "092055f7-1549-4a17-aaf7-16c323525d8f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011333", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011333/f373a71bef30437ca9067d152f0424dd", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011333", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011333\u002f29bed21bb8914e76af77a94f89da1bc4", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011334?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011334?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f66-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f403692518f227d5c337e3c8370bccff", "x-ms-return-client-request-id": "true" @@ -3184,41 +3294,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "991b7f1b-eef9-47f5-b26d-02815ac5b03e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "003ff5b1-ac6d-428d-91c6-87d63c7e8a82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011334/6a43aadefbdb4f08bf41adac0aef53ad", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011334\u002f6b77f1d3adac440e9fe1f0045fcb4051", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011334?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011334?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f67-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "72b9334d321f909a300e087ab04e9445", "x-ms-return-client-request-id": "true" @@ -3228,44 +3339,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb8564ed-fdeb-4db6-bb57-ac5b91876247", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b40b8bf1-8d78-4d41-8efe-ed3991a30219", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011334", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011334/6a43aadefbdb4f08bf41adac0aef53ad", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011334", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011334\u002f6b77f1d3adac440e9fe1f0045fcb4051", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011335?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011335?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f68-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5db920c4fa3a46d9e1b91aa1839d2c42", "x-ms-return-client-request-id": "true" @@ -3277,41 +3389,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "72c4a742-5120-49f8-b5a1-a3efcb7e5c93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "92ee273a-3888-48c2-bdb0-2daf019959fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011335/9adc4249c6aa4a8aac5cb3fd88191d4b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011335\u002f6a60c0f84bc940709794cd1ee2999e36", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011335?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011335?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f69-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0a651bcae039f2fbce73c4e40f5b7774", "x-ms-return-client-request-id": "true" @@ -3321,44 +3434,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "62ceaf4b-1bcb-4dad-b828-c2d780a32727", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7d992510-3bca-421e-8a92-1a7bbe1ec95e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011335", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011335/9adc4249c6aa4a8aac5cb3fd88191d4b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011335", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011335\u002f6a60c0f84bc940709794cd1ee2999e36", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011336?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011336?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "16039ea26e5252c45a73906518f90d92", "x-ms-return-client-request-id": "true" @@ -3370,41 +3484,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1d134e04-9e45-4714-9192-293f5216ba29", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cb2e1788-7b04-4440-af01-61af1449ea80", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011336/54d3ecc4725848849d31ced174f7d386", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011336\u002f21e35174fc614ef0a7aab0724163e64b", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011336?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011336?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "94b0c5e18ae9e30c24c68fc736f43686", "x-ms-return-client-request-id": "true" @@ -3414,44 +3529,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "84c58362-4b98-487e-b6ab-d6d2a153e8f6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "68fa77d6-c3ac-4fc1-887d-46bfc62484f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011336", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011336/54d3ecc4725848849d31ced174f7d386", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011336", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011336\u002f21e35174fc614ef0a7aab0724163e64b", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011337?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011337?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e5ffa64216995bf05712afc54f96dad5", "x-ms-return-client-request-id": "true" @@ -3463,41 +3579,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a7b136d7-0df6-4d14-82fb-9375057543d3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b5edd6d4-2a07-4840-ae66-b5966fb38e1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011337/3ff93a748f7b45dea7817b5bc71e0027", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011337\u002fcf0e27dd051f4bd29b1049e8bb05e352", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011337?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011337?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "49023165e3aa188a911ff28bdffd1c65", "x-ms-return-client-request-id": "true" @@ -3507,44 +3624,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "db7ca53b-6471-4f9f-9279-afc0230d21f3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bf9f4552-7a95-4586-8a4e-28b07b8bb026", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011337", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011337/3ff93a748f7b45dea7817b5bc71e0027", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011337", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011337\u002fcf0e27dd051f4bd29b1049e8bb05e352", "attributes": { "enabled": true, - "created": 1560804247, - "updated": 1560804247, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011338?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011338?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "72230a3c28f9cbf9d5543dd7da46938e", "x-ms-return-client-request-id": "true" @@ -3556,41 +3674,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "16b33525-54f2-4f9b-a878-bd9cf736fe5a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc4a2179-1ae2-4306-952f-efc9d1c79099", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011338/9d5909292d0e48c2bc6d7342f30a3d09", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011338\u002fe56828feb12b44e39d0aacd2a87ae0df", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011338?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011338?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f6f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0561baececf15fdb1be7537a24657c59", "x-ms-return-client-request-id": "true" @@ -3600,44 +3719,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "051fcc71-1dad-420b-8ee2-4369a76abbe7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "578398a4-9c5c-4694-9faa-ee10d0649010", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011338", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011338/9d5909292d0e48c2bc6d7342f30a3d09", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011338", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011338\u002fe56828feb12b44e39d0aacd2a87ae0df", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011339?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011339?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f70-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "45894af567733ddb38377456a6b23d4b", "x-ms-return-client-request-id": "true" @@ -3649,41 +3769,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:07 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5cdd307f-5c90-4a50-92d7-e8a7c2b35bdd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "74506c2a-ef5c-471b-bc99-e2fa6ee0a79e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011339/b609d4968a7f454789a60f624ba94948", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011339\u002fa1edfb9f8efa48efa9cc06a4e8bee9e5", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011339?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011339?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f71-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "259e638b179c4f732fc45612d57ea670", "x-ms-return-client-request-id": "true" @@ -3693,44 +3814,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "73707c48-9674-446e-9303-a70aa1c77e5b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e6f35ae7-078b-4823-bb82-5cd5a56a0d56", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011339", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011339/b609d4968a7f454789a60f624ba94948", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011339", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011339\u002fa1edfb9f8efa48efa9cc06a4e8bee9e5", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011340?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011340?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f72-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "90e1e3d84ebc841adf23ccb97884b968", "x-ms-return-client-request-id": "true" @@ -3742,41 +3864,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "895113c1-84f8-45ee-8912-bc79a56f8475", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a3bceb81-102c-4316-9a72-6df96cbb86c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011340/dd3b2133018f4985bb20e50017ac8e60", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011340\u002f0e5d59f12daa487c8d53261e25bb9000", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011340?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011340?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f73-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c0ee07a957c6ddbdd63a16af11c868b9", "x-ms-return-client-request-id": "true" @@ -3786,44 +3909,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7e9e51b6-f353-4680-b4a5-dbffa4518468", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aae27e2f-d6be-43ad-af38-6462020164b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011340", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011340/dd3b2133018f4985bb20e50017ac8e60", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011340", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011340\u002f0e5d59f12daa487c8d53261e25bb9000", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011341?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011341?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f74-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c27d0491acd13d8f481945784ab9d7aa", "x-ms-return-client-request-id": "true" @@ -3835,41 +3959,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a0a1f626-e393-4358-83ed-01a73d0e44f4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e51f24e1-ff59-4211-8ca7-dac56db393c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011341/e5c224a3c8704ee0be936edd97daef34", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011341\u002f86b8f2cce3494f43ac2a7e5e5c859edf", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011341?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011341?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f75-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ce69ed0be69081a92603ba82386b7316", "x-ms-return-client-request-id": "true" @@ -3879,44 +4004,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1410c58e-2569-41ac-a5b0-30d273d3f30e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c297a736-56f6-43e2-ac5d-09ed88dd75e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011341", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011341/e5c224a3c8704ee0be936edd97daef34", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011341", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011341\u002f86b8f2cce3494f43ac2a7e5e5c859edf", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011342?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011342?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f76-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "732813bbf606fc9777b177ac1144921c", "x-ms-return-client-request-id": "true" @@ -3928,41 +4054,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7fb4b784-80e7-4b6e-ba6a-24ae662bb1a2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6683ad54-e1d8-4fae-b129-30cac402c3da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011342/e9bbb28820cf46449873dd82a75e5e0f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011342\u002f65a74ad6cfb94d2f8bf2ecf3ff64cf83", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011342?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011342?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f77-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "23a46b639a5faa295afc9ccdf20d04dd", "x-ms-return-client-request-id": "true" @@ -3972,44 +4099,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4edb9c29-58e1-4f31-921d-8083cf907322", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a08ac143-c407-4c21-aada-428a35ee6cca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011342", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011342/e9bbb28820cf46449873dd82a75e5e0f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011342", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011342\u002f65a74ad6cfb94d2f8bf2ecf3ff64cf83", "attributes": { "enabled": true, - "created": 1560804248, - "updated": 1560804248, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011343?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011343?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f78-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "37bd2ea6639114a3566c56de6ffd70e1", "x-ms-return-client-request-id": "true" @@ -4021,41 +4149,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "03e4928f-d00f-463e-b369-f4949a064bc3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "67ed9255-8f1f-4d6d-88d6-4d9790e3e0fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011343/6de34e6a8389457b9ed4434a69264d82", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011343\u002f9a4eb3a44b894fb9875e265bc9145d08", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011343?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011343?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f79-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cc1e9e704fc721b7ea7e190a59ca096a", "x-ms-return-client-request-id": "true" @@ -4065,44 +4194,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "16774f75-bba7-49c8-88ef-096e8d511bb1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1254acb2-d26d-4658-ac7d-0e6bf02e9455", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011343", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011343/6de34e6a8389457b9ed4434a69264d82", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011343", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011343\u002f9a4eb3a44b894fb9875e265bc9145d08", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011344?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011344?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e2069aac5b87ff8bc88fcdf2434a3b5d", "x-ms-return-client-request-id": "true" @@ -4114,41 +4244,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:08 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d3f4ad26-af1e-4a48-b6ca-8d0dcca2c6ff", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "db42a5ef-89c3-4817-8f2e-eab0d395e97e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011344/c7c410b1d7df4db990b918a371b298a8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011344\u002f87319c4d20e24da7988dccb683d94170", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011344?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011344?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "545cbb8c37ee5615779b4d124a98ba8b", "x-ms-return-client-request-id": "true" @@ -4158,44 +4289,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "54438e8a-3cbe-403b-9fe4-8daec2be41f0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "492828ff-6704-4840-ac8c-8a976b4e0c75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011344", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011344/c7c410b1d7df4db990b918a371b298a8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011344", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011344\u002f87319c4d20e24da7988dccb683d94170", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011345?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011345?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d432eb628df61559131e043782c5dd9f", "x-ms-return-client-request-id": "true" @@ -4207,41 +4339,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7f4a2ec8-b2dc-45fa-a64f-1f6692a85527", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6c732354-889e-4c44-a05b-349c96ef23d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011345/b0575763e82b41c795e77096c77f148b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011345\u002f82a4aa0e2bc64682ad95201a88854bbb", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011345?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011345?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9e7ebb43b56e747c84af6beb0d78b52f", "x-ms-return-client-request-id": "true" @@ -4251,44 +4384,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df4b41d6-7ddc-429c-88ba-7bb48f349098", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a064823a-3196-4f31-a3ef-58771edc262c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011345", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011345/b0575763e82b41c795e77096c77f148b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011345", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011345\u002f82a4aa0e2bc64682ad95201a88854bbb", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011346?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011346?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "588f41d56618fe66614641cf33ddd3b1", "x-ms-return-client-request-id": "true" @@ -4300,41 +4434,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "26eb6214-388d-4904-a236-642be9eb56f8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "269abc82-1110-4daa-adeb-f2479390b34d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011346/e1ce13163ebf4d00a2ed330343fb1457", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011346\u002fb196659d33524078bdd21a8e54289398", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011346?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011346?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f7f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8ecfadbe1b1aad1d6fbd4f46226d079a", "x-ms-return-client-request-id": "true" @@ -4344,44 +4479,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cac73664-c95f-4e0b-94d0-3ccec5fdd5e2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b55b6a18-24c0-49bc-bc78-79c732279ad9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011346", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011346/e1ce13163ebf4d00a2ed330343fb1457", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011346", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011346\u002fb196659d33524078bdd21a8e54289398", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011347?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011347?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f80-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4062d4698435dc87547f3d2874ac41a6", "x-ms-return-client-request-id": "true" @@ -4393,41 +4529,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "23b84fc9-d05a-4e60-806d-9cb742d3e415", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eb699fc8-b2d0-4448-8bc4-22e0c6b1b467", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011347/8827c00fc7eb4f9f807f8cdd85513637", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011347\u002fec5487ff14d549be91a3cc6472a96d34", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011347?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011347?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f81-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "602db9db27a9b91424e2e85b1620dbf3", "x-ms-return-client-request-id": "true" @@ -4437,44 +4574,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c291dbc0-9eba-4677-9db1-d0a68f3ba7ef", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "694f5f36-2560-48be-9fef-d3f46edf5434", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011347", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011347/8827c00fc7eb4f9f807f8cdd85513637", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011347", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011347\u002fec5487ff14d549be91a3cc6472a96d34", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011348?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011348?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f82-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5f66a63e937b397c25f2399adef439c2", "x-ms-return-client-request-id": "true" @@ -4486,41 +4624,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e2d103d3-3a72-4605-953a-b8806bb32453", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "99851abd-53f4-409b-a92f-73221eed49a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011348/c59769a01d0f401cb4510e6ad11633b4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011348\u002fc275a3c7c14e455ea959ecfb9a6860d5", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011348?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011348?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f83-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "696aa97ba74041f1bfa91c529c2cc534", "x-ms-return-client-request-id": "true" @@ -4530,44 +4669,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "35ca54d6-8930-4f3f-96c1-ac474c5e8af2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "738946ad-44f9-43d3-8aa4-6f9ae9ef007a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011348", - "deletedDate": 1560804250, - "scheduledPurgeDate": 1568580250, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011348/c59769a01d0f401cb4510e6ad11633b4", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011348", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011348\u002fc275a3c7c14e455ea959ecfb9a6860d5", "attributes": { "enabled": true, - "created": 1560804249, - "updated": 1560804249, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011349?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011349?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f84-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cde94aa4e246482b3cf33ab6ed79da2f", "x-ms-return-client-request-id": "true" @@ -4579,41 +4719,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4e576d8e-0813-4246-8276-7ee5540827b9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7c33e484-a215-4d11-8799-d260e0e14a59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011349/c117e7d001b74a25931a2e5072dc1099", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011349\u002fccb71d7c43994ee08dd9edb7cade1ded", "attributes": { "enabled": true, - "created": 1560804250, - "updated": 1560804250, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/165886011349?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011349?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297f85-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6ddf25a971b596b2b5249fd177299df9", "x-ms-return-client-request-id": "true" @@ -4623,15334 +4764,2586 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e293e33-aea6-45e7-a327-b29d026fbb05", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1b1107e4-d30f-4cdc-a075-c2d761c38f73", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011349", - "deletedDate": 1560804250, - "scheduledPurgeDate": 1568580250, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011349/c117e7d001b74a25931a2e5072dc1099", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011349", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011349\u002fccb71d7c43994ee08dd9edb7cade1ded", "attributes": { "enabled": true, - "created": 1560804250, - "updated": 1560804250, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fba-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cb11f41bba7220ddb02fb6d00ff602ae", + "x-ms-client-request-id": "b740a2d3006bc734b6494d30b327e16e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5139", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:32 GMT", + "Content-Length": "4518", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a744be9b-43e2-48fe-8547-57917fa51e8d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "30403e11-f4dd-411f-a011-e7fe75f54a22", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf421", - "deletedDate": 1559859911, - "scheduledPurgeDate": 1567635911, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf421", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601130", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601130", "attributes": { "enabled": true, - "created": 1559859911, - "updated": 1559859911, + "created": 1565114090, + "updated": 1565114090, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf422", - "deletedDate": 1559859911, - "scheduledPurgeDate": 1567635911, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf422", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601131", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601131", "attributes": { "enabled": true, - "created": 1559859911, - "updated": 1559859911, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf423", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf423", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011310", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011310", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf424", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf424", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011311", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011311", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf425", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf425", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011312", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011312", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf426", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf426", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011313", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011313", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf427", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf427", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011314", + "deletedDate": 1565114093, + "scheduledPurgeDate": 1572890093, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011314", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114093, + "updated": 1565114093, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf428", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf428", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011315", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011315", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf429", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf429", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011316", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011316", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf430", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf430", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011317", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011317", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf431", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf431", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011318", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011318", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf432", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf432", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011319", + "deletedDate": 1565114094, + "scheduledPurgeDate": 1572890094, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011319", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf433", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf433", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601132", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601132", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRNekwwUTVSVUUyT1VReU1qWkNNRFF4TWprNFJrRTJORVZFUkVSRU1rRTJRVGRDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhOalU0T0RZd01URXpNaTg1UTBZM01EbEVPRVE0T0VRME5rTTNRalJGUWtFMFFrRkVRelF3UXpjelJpRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRNekwwUTVSVUUyT1VReU1qWkNNRFF4TWprNFJrRTJORVZFUkVSRU1rRTJRVGRDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhOalU0T0RZd01URXpNaTg1UTBZM01EbEVPRVE0T0VRME5rTTNRalJGUWtFMFFrRkVRelF3UXpjelJpRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fbb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dbd22ed736eac7ebe642e00bf03d175b", + "x-ms-client-request-id": "3426f0730c88febbd76010f6b05b2fec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:32 GMT", + "Content-Length": "4140", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e7f38da-a3bb-495d-8b86-adc2b8532d1e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "09d33872-f821-4ee2-bd7d-3ac62fdf569b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf434", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf434", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011320", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011320", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114094, + "updated": 1565114094, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf435", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf435", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011321", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011321", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf436", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf436", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011322", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011322", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf437", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf437", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011323", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011323", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf438", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf438", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011324", + "deletedDate": 1565114095, + "scheduledPurgeDate": 1572890095, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011324", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf439", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf439", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011325", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011325", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114095, + "updated": 1565114095, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf440", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf440", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011326", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011326", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf441", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf441", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011327", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011327", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf442", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf442", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011328", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011328", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf443", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf443", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011329", + "deletedDate": 1565114096, + "scheduledPurgeDate": 1572890096, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011329", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114096, + "updated": 1565114096, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf444", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf444", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601133", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601133", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf445", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf445", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011330", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011330", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fbc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "be1461191515b9fc1206835955ebeee1", + "x-ms-client-request-id": "cb11f41bba7220ddb02fb6d00ff602ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:32 GMT", + "Content-Length": "4522", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5f6e4d99-0761-4e71-9595-38cfffee9f7a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "33047a9c-a401-402a-be03-df24f89f9eef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf446", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf446", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011331", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011331", + "attributes": { + "enabled": true, + "created": 1565114097, + "updated": 1565114097, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011332", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011332", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf447", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf447", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011333", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011333", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf448", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf448", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011334", + "deletedDate": 1565114097, + "scheduledPurgeDate": 1572890097, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011334", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf449", - "deletedDate": 1559859918, - "scheduledPurgeDate": 1567635918, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf449", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011335", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011335", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114097, + "updated": 1565114097, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1003501949", - "deletedDate": 1560273769, - "scheduledPurgeDate": 1568049769, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1003501949", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011336", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011336", "attributes": { "enabled": true, - "created": 1560273769, - "updated": 1560273769, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116540", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116540", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011337", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011337", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116541", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116541", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011338", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011338", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165410", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165410", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011339", + "deletedDate": 1565114098, + "scheduledPurgeDate": 1572890098, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011339", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114098, + "updated": 1565114098, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165411", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165411", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601134", + "deletedDate": 1565114091, + "scheduledPurgeDate": 1572890091, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601134", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114091, + "updated": 1565114091, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165412", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165412", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011340", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011340", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165413", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165413", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011341", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011341", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165414", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165414", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011342", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011342", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXhOQzh4TmpSR01EWkRNek0yTVRBME5UQXpPVUUwUlRBNE5UbEJORVUyUlRBM09DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpOREl2TmpWQk56UkJSRFpEUmtJNU5FUXlSamhDUmpKRlEwWXpSa1kyTkVOR09ETWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXhOQzh4TmpSR01EWkRNek0yTVRBME5UQXpPVUUwUlRBNE5UbEJORVUyUlRBM09DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpOREl2TmpWQk56UkJSRFpEUmtJNU5FUXlSamhDUmpKRlEwWXpSa1kyTkVOR09ETWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fbd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "821f625d5488e401094ae530dad13073", + "x-ms-client-request-id": "dbd22ed736eac7ebe642e00bf03d175b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:33 GMT", + "Content-Length": "4132", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8d944698-ebac-4951-9ac5-677d94426b49", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "05d5bc14-7111-4367-bec0-e9f24c795716", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165415", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165415", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011343", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011343", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165416", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165416", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011344", + "deletedDate": 1565114099, + "scheduledPurgeDate": 1572890099, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011344", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165417", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165417", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011345", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011345", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114099, + "updated": 1565114099, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165418", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165418", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011346", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011346", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165419", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165419", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011347", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011347", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116542", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116542", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011348", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011348", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165420", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165420", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011349", + "deletedDate": 1565114100, + "scheduledPurgeDate": 1572890100, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f165886011349", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114100, + "updated": 1565114100, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165421", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165421", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601135", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601135", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165422", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165422", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601136", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601136", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165423", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165423", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601137", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601137", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165424", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165424", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601138", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601138", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165425", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165425", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601139", + "deletedDate": 1565114092, + "scheduledPurgeDate": 1572890092, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f16588601139", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114092, + "updated": 1565114092, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eE9UUXdPVE00TkRZeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eE9UUXdPVE00TkRZeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fbe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "aeb75b1743e1c1983118c8e4b29172fb", + "x-ms-client-request-id": "be1461191515b9fc1206835955ebeee1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4496", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:33 GMT", + "Content-Length": "1711", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "25309f3b-2c8b-4547-afbb-b4e5e4ee3e65", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "70120a61-9d85-46a7-97e2-28199593f1d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165426", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165426", - "attributes": { - "enabled": true, - "created": 1560532004, - "updated": 1560532004, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165427", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165427", - "attributes": { - "enabled": true, - "created": 1560532004, - "updated": 1560532004, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165428", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165428", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165429", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165429", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116543", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116543", - "attributes": { - "enabled": true, - "created": 1560531999, - "updated": 1560531999, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165430", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165430", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165431", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165431", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165432", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165432", - "attributes": { - "enabled": true, - "created": 1560532006, - "updated": 1560532006, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165433", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165433", - "attributes": { - "enabled": true, - "created": 1560532006, - "updated": 1560532006, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165434", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165434", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fBankAccountPassword-521455d6-ed6a-44ec-82b7-3b33716fdb77", + "deletedDate": 1565051806, + "scheduledPurgeDate": 1572827806, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fBankAccountPassword-521455d6-ed6a-44ec-82b7-3b33716fdb77", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "created": 1565051806, + "updated": 1565051806, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165435", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165435", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fBankAccountPassword-bff04556-f52d-4906-8526-a4bbd7bb1e79", + "deletedDate": 1565083402, + "scheduledPurgeDate": 1572859402, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fBankAccountPassword-bff04556-f52d-4906-8526-a4bbd7bb1e79", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "created": 1565083402, + "updated": 1565083402, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165436", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165436", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fStorageAccountPasswor9ebbe6fa-3561-4517-a621-58b8bc2335b7", + "deletedDate": 1565083403, + "scheduledPurgeDate": 1572859403, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fStorageAccountPasswor9ebbe6fa-3561-4517-a621-58b8bc2335b7", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "exp": 1596705801020, + "created": 1565083401, + "updated": 1565083401, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165437", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165437", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fStorageAccountPassworf3fb75f6-140a-4670-bec9-3730167cfe9e", + "deletedDate": 1565051806, + "scheduledPurgeDate": 1572827806, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fStorageAccountPassworf3fb75f6-140a-4670-bec9-3730167cfe9e", "attributes": { "enabled": true, - "created": 1560532007, - "updated": 1560532007, + "exp": 1596674204723, + "created": 1565051805, + "updated": 1565051805, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXpOeTlHT0Rnek5Ua3dOMEZETVRjMFFrTTRRa014TlRZeE5VVkRNVEk0UVRNMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXpOeTlHT0Rnek5Ua3dOMEZETVRjMFFrTTRRa014TlRZeE5VVkRNVEk0UVRNMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601130?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8dadfe53941dc4d25f2fb5cb30ccdf41", + "x-ms-client-request-id": "9574b5e9765b4ddc06707bb6fc5a326b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:33 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "584d850a-0a48-48e9-8ecc-ff04104d5035", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e170c49b-ad94-4c88-8df6-b845b0bfbd20", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165438", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165438", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165439", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165439", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116544", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116544", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165440", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165440", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165441", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165441", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165442", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165442", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165443", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165443", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165444", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165444", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165445", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165445", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165446", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165446", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165447", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165447", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165448", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165448", - "attributes": { - "enabled": true, - "created": 1560532009, - "updated": 1560532009, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601131?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f94110d53f3319ffca5e506f8c1d3278", + "x-ms-client-request-id": "545271e4531a0cd665414c619ac58d40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2248", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:33 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b4d57d4d-0607-45a6-8ccf-01b533f0202d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b4efa42b-1211-4add-b6c1-d15fc48f7e47", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165449", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165449", - "attributes": { - "enabled": true, - "created": 1560532009, - "updated": 1560532009, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116545", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116545", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116546", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116546", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116547", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116547", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116548", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116548", - "attributes": { - "enabled": true, - "created": 1560532001, - "updated": 1560532001, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116549", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116549", - "attributes": { - "enabled": true, - "created": 1560532001, - "updated": 1560532001, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNVEV2UmpZMk9VVTJNME5CT1VJME5FVkRSRUZETTBVMVJUQXlRVFJHT1RsRU9URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNVEV2UmpZMk9VVTJNME5CT1VJME5FVkRSRUZETTBVMVJUQXlRVFJHT1RsRU9URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601132?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dbdce9d8a223835689f24eb28ecd9065", + "x-ms-client-request-id": "e70a0c1657e8d5673b54c2058f21d1e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:33 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "01323159-20a4-468b-bc17-6407624a1dd0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a9fbcfb4-dadc-464c-8cf6-57ff058348b3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601133?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a20e8739784f14c7fe94c3be44623842", + "x-ms-client-request-id": "a6f2feb4b0739547de682f192a7bb240", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "775a757b-b597-4c54-9f04-7021fd3f9618", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6efe7ccb-db0b-4e93-8fb8-b775b6ccd418", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNelF2TURGRE56SXpNRUkzUmpoQk5FRXpNemczTWpFMFJqQkdPREpDT0Rnek1ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNelF2TURGRE56SXpNRUkzUmpoQk5FRXpNemczTWpFMFJqQkdPREpDT0Rnek1ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601134?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "46f23cfd03f0331db9be7041f04d8bfc", + "x-ms-client-request-id": "ef9f3ae24b4f8c83097c19c590d07c44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e606468a-61ba-40ab-91e2-208875e7a318", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "83bdbb82-bcf7-49ca-8997-f5daf5c99215", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601135?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0536eacd8f0e5f2922c8dd8fde973e26", + "x-ms-client-request-id": "9cac6870e7d366cdc575087f284dabbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "976", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5d41f0a2-526a-475e-8812-d1314b1ff77e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "33371ba0-4a6c-4c45-ae5e-fea36ce9512f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/116948964", - "deletedDate": 1560273983, - "scheduledPurgeDate": 1568049983, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/116948964", - "attributes": { - "enabled": true, - "created": 1560273983, - "updated": 1560273983, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470610", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470610", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNVEF2TWpjMU1rTXhSakpDTlVNeE5FWXlSRGs0T1RrNU5rVTVSRE0zTWpkRU5ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNVEF2TWpjMU1rTXhSakpDTlVNeE5FWXlSRGs0T1RrNU5rVTVSRE0zTWpkRU5ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "51b50cb94ada367469dbe890088523b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6fd23ab3-6be8-4e15-bd10-2bac064ca075", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470611", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470611", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470612", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470612", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470613", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470613", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470614", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470614", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470615", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470615", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470616", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470616", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470617", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470617", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470618", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470618", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470619", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470619", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147062", - "deletedDate": 1559861093, - "scheduledPurgeDate": 1567637093, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147062", - "attributes": { - "enabled": true, - "created": 1559861093, - "updated": 1559861093, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470620", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470620", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470621", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470621", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "5af0c709332c6d3313932428258d5422", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a2b2fa13-d5a2-4c78-bf3c-1bc91a94f47d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470622", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470622", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470623", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470623", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470624", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470624", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470625", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470625", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470626", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470626", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470627", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470627", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470628", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470628", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470629", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470629", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147063", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147063", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470630", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470630", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470631", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470631", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470632", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470632", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470633", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470633", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNek12TjBNek56aENOVEUwTnpjek5EUXdNems1T0RBeE5VVTNOVEZCUkVKR09FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNek12TjBNek56aENOVEUwTnpjek5EUXdNems1T0RBeE5VVTNOVEZCUkVKR09FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e4874a803997832275ff9b33a698579c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7d8a7796-0dbe-4371-85b7-0cb76514fee2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470634", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470634", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470635", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470635", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470636", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470636", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470637", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470637", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470638", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470638", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470639", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470639", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147064", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147064", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470640", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470640", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470641", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470641", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470642", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470642", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470643", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470643", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470644", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470644", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "17862ba5e3a686f9d9473e47254c10db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3548", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1f7a4e4b-f758-496e-9d6a-351211b034e8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470645", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470645", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470646", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470646", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470647", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470647", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470648", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470648", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470649", - "deletedDate": 1559861103, - "scheduledPurgeDate": 1567637103, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470649", - "attributes": { - "enabled": true, - "created": 1559861103, - "updated": 1559861103, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147065", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147065", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147066", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147066", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147067", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147067", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147068", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147068", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147069", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147069", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNalV5T0RBd01EQXhNUzlHTXpRM1JEVTVNVVpGTWpFMFFrWkRPRUl5TnpJeU5FRXpRekJCTmprME9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNalV5T0RBd01EQXhNUzlHTXpRM1JEVTVNVVpGTWpFMFFrWkRPRUl5TnpJeU5FRXpRekJCTmprME9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "be0fc6863efecf19a46de42c9700c67a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2842", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6403fd12-0cc1-47ec-afc6-410a67507e3d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1264450906", - "deletedDate": 1560273189, - "scheduledPurgeDate": 1568049189, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1264450906", - "attributes": { - "enabled": true, - "created": 1560273188, - "updated": 1560273188, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1271946808", - "deletedDate": 1560273961, - "scheduledPurgeDate": 1568049961, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1271946808", - "attributes": { - "enabled": true, - "created": 1560273961, - "updated": 1560273961, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559280", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559280", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559281", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559281", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592810", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592810", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592811", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592811", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592812", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592812", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592813", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592813", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fa83873b3d079c7b50010b4ffadb5d29", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0f4a6bba-3541-40b6-8e52-4ee3c422e608", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592814", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592814", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592815", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592815", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592816", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592816", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592817", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592817", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592818", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592818", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592819", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592819", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559282", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559282", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592820", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592820", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592821", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592821", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592822", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592822", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592823", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592823", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592824", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592824", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592825", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592825", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRNalV2UmpKQk1UZ3pOVGszUWpJNE5ETTFPRUZFTmpVMk9EYzBSakJFUTBVd09UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRNalV2UmpKQk1UZ3pOVGszUWpJNE5ETTFPRUZFTmpVMk9EYzBSakJFUTBVd09UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e0acbfef9989669e11b67239ffcdeed8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "299e62cf-fab5-4faa-9f99-001d20bbd8ab", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592826", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592826", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592827", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592827", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592828", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592828", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592829", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592829", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559283", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559283", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592830", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592830", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592831", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592831", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592832", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592832", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592833", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592833", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592834", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592834", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592835", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592835", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592836", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592836", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9d0bc48016c949d44a726efd33c9d5c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d963786c-97b8-46c6-a53f-8684600e4dc2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592837", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592837", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592838", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592838", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592839", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592839", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559284", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559284", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592840", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592840", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592841", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592841", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592842", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592842", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592843", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592843", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592844", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592844", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592845", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592845", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592846", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592846", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592847", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592847", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592848", - "deletedDate": 1560272501, - "scheduledPurgeDate": 1568048501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592848", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRORGd2UVVJelFVRTROelEyTUVJd05ERXdNemcxUTBGRVFrTTJRalF5TWpkRlJqRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRORGd2UVVJelFVRTROelEyTUVJd05ERXdNemcxUTBGRVFrTTJRalF5TWpkRlJqRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d83dbb0fe654a1f1e91ce850ca429d82", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3806", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c493b6b6-eea6-4f4c-afbb-edae52325568", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592849", - "deletedDate": 1560272501, - "scheduledPurgeDate": 1568048501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592849", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559285", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559285", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559286", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559286", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559287", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559287", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559288", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559288", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559289", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559289", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778970", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778970", - "attributes": { - "enabled": true, - "created": 1560273677, - "updated": 1560273677, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778971", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778971", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789710", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789710", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789711", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789711", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789712", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789712", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "36cf3212c0cfd85fea6295162ba03347", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49740d01-5ee7-4dd6-b04d-fd58524e46bf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789713", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789713", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789714", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789714", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789715", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789715", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789716", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789716", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789717", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789717", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789718", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789718", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789719", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789719", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778972", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778972", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789720", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789720", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789721", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789721", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789722", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789722", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789723", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789723", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789724", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789724", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNNalF2UTBVNU9FSTBSRFEyUTBFek5EUXlRVGxDTWtaRFF6WkNRVEUyTURGQ01FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNNalF2UTBVNU9FSTBSRFEyUTBFek5EUXlRVGxDTWtaRFF6WkNRVEUyTURGQ01FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "442aa9e1158f9a84d369b4ac2e847e07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "07db49a9-e403-4983-ad2d-be3db107b4ed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789725", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789725", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789726", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789726", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789727", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789727", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789728", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789728", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789729", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789729", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778973", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778973", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789730", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789730", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789731", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789731", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789732", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789732", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789733", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789733", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789734", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789734", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789735", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789735", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "00eaebd59ffa4ff95b64edf150da7648", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "de2b1eb5-bb4d-4595-a53b-d2f1f1e149dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789736", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789736", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789737", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789737", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789738", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789738", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789739", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789739", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778974", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778974", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789740", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789740", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789741", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789741", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789742", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789742", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789743", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789743", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789744", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789744", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789745", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789745", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789746", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789746", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789747", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789747", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNORGN2TVVVMU1VUkVPRFF6UlRaRk5EVTRPVUk1T1VZMk5UUkdOakkyUmpSRk5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNORGN2TVVVMU1VUkVPRFF6UlRaRk5EVTRPVUk1T1VZMk5UUkdOakkyUmpSRk5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "216fa0e95818fcf2ae3563660bb3aa66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4128", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "71c12dd8-89c2-47be-a282-ccff52218781", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789748", - "deletedDate": 1560273687, - "scheduledPurgeDate": 1568049687, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789748", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789749", - "deletedDate": 1560273687, - "scheduledPurgeDate": 1568049687, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789749", - "attributes": { - "enabled": true, - "created": 1560273687, - "updated": 1560273687, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778975", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778975", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778976", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778976", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778977", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778977", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778978", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778978", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778979", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778979", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329510", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329510", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329511", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329511", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295110", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295110", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295111", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295111", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295112", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295112", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "40408ee432b6414dafdae82b279349f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4fabd252-b815-4ec1-b6f0-a6dc0694da9b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295113", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295113", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295114", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295114", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295115", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295115", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295116", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295116", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295117", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295117", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295118", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295118", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295119", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295119", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329512", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329512", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295120", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295120", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295121", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295121", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295122", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295122", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295123", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295123", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295124", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295124", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhNalF2TXpORVJURXdSak0zTUVOQ05FUXdPRGszTUVFek5VUXdSRVJET0RBM04wVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhNalF2TXpORVJURXdSak0zTUVOQ05FUXdPRGszTUVFek5VUXdSRVJET0RBM04wVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8dc26bf35c147ceff8ed52c53c9343a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "45e4925b-7a3e-4fbd-aae1-31144f9ad30c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295125", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295125", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295126", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295126", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295127", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295127", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295128", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295128", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295129", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295129", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329513", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329513", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295130", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295130", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295131", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295131", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295132", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295132", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295133", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295133", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295134", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295134", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295135", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295135", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c20c87b9359ab792532d723d70c7d41b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fab74742-b146-4108-8af1-4ecc7e0e78ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295136", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295136", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295137", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295137", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295138", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295138", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295139", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295139", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329514", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329514", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295140", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295140", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295141", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295141", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295142", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295142", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295143", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295143", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295144", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295144", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295145", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295145", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295146", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295146", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295147", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295147", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhORGN2TmtFeFJqRTBNakUxUlVRM05EVTRNVUpFT1VNMU5qWTBRVEkwUWtRM05qQWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhORGN2TmtFeFJqRTBNakUxUlVRM05EVTRNVUpFT1VNMU5qWTBRVEkwUWtRM05qQWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a0726aeb1df087519ec447c8e087051b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3484", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f125d533-dc9f-481d-9844-980a4e88076c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295148", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295148", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295149", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295149", - "attributes": { - "enabled": true, - "created": 1560273718, - "updated": 1560273718, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329515", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329515", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329516", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329516", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329517", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329517", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329518", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329518", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329519", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329519", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1459629058", - "deletedDate": 1560274220, - "scheduledPurgeDate": 1568050220, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1459629058", - "attributes": { - "enabled": true, - "created": 1560274202, - "updated": 1560274202, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350229", - "deletedDate": 1559860327, - "scheduledPurgeDate": 1567636327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350229", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350230", - "deletedDate": 1559860327, - "scheduledPurgeDate": 1567636327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350230", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a07141978786bd5dd80b3ae7eab10c30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc25af7d-0606-45a9-b5ab-fb01b7b800cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350231", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350231", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350232", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350232", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350233", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350233", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350234", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350234", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350235", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350235", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350236", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350236", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350237", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350237", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350238", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350238", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350239", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350239", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350240", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350240", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350241", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350241", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350242", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350242", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350243", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350243", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOVEkxTnpNek5UQXlORE12TURWR05UWXlNakV5T0RFeE5EWkdSa0kzTlVVelJqUkRSRFUyTURoRlEwRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOVEkxTnpNek5UQXlORE12TURWR05UWXlNakV5T0RFeE5EWkdSa0kzTlVVelJqUkRSRFUyTURoRlEwRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d1da3719a2219cb6358523d6eec9d7cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3490", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dbec1357-7229-4eae-966f-7de6fefde716", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350244", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350244", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350245", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350245", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350246", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350246", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350247", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350247", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350248", - "deletedDate": 1559860330, - "scheduledPurgeDate": 1567636330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350248", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350249", - "deletedDate": 1559860330, - "scheduledPurgeDate": 1567636330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350249", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1580011209", - "deletedDate": 1560273367, - "scheduledPurgeDate": 1568049367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1580011209", - "attributes": { - "enabled": true, - "created": 1560273367, - "updated": 1560273367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601130", - "deletedDate": 1560804240, - "scheduledPurgeDate": 1568580240, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601130", - "attributes": { - "enabled": true, - "created": 1560804240, - "updated": 1560804240, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601131", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601131", - "attributes": { - "enabled": true, - "created": 1560804241, - "updated": 1560804241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011310", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011310", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek1URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek1URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2ea65627345564940cb5c7e5e26a9ced", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a4afb78-8fe4-4629-9f2c-817f8128de3c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011311", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011311", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011312", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011312", - "attributes": { - "enabled": true, - "created": 1560804243, - "updated": 1560804243, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011313", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011313", - "attributes": { - "enabled": true, - "created": 1560804243, - "updated": 1560804243, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011314", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011314", - "attributes": { - "enabled": true, - "created": 1560804243, - "updated": 1560804243, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011315", - "deletedDate": 1560804243, - "scheduledPurgeDate": 1568580243, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011315", - "attributes": { - "enabled": true, - "created": 1560804243, - "updated": 1560804243, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011316", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011316", - "attributes": { - "enabled": true, - "created": 1560804243, - "updated": 1560804243, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011317", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011317", - "attributes": { - "enabled": true, - "created": 1560804244, - "updated": 1560804244, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011318", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011318", - "attributes": { - "enabled": true, - "created": 1560804244, - "updated": 1560804244, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011319", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011319", - "attributes": { - "enabled": true, - "created": 1560804244, - "updated": 1560804244, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601132", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601132", - "attributes": { - "enabled": true, - "created": 1560804241, - "updated": 1560804241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011320", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011320", - "attributes": { - "enabled": true, - "created": 1560804244, - "updated": 1560804244, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011321", - "deletedDate": 1560804244, - "scheduledPurgeDate": 1568580244, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011321", - "attributes": { - "enabled": true, - "created": 1560804244, - "updated": 1560804244, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011322", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011322", - "attributes": { - "enabled": true, - "created": 1560804245, - "updated": 1560804245, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpNakl2TVRRd1JVRTJSVGMzTnpFME5FTTBOamszT0RWQ1FUTTJRalJDTXprek5qa2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpNakl2TVRRd1JVRTJSVGMzTnpFME5FTTBOamszT0RWQ1FUTTJRalJDTXprek5qa2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a9af16b734adf4fa8ad56a006387cf0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4633d993-1587-430b-bfc7-1d1c10fb65b0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011323", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011323", - "attributes": { - "enabled": true, - "created": 1560804245, - "updated": 1560804245, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011324", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011324", - "attributes": { - "enabled": true, - "created": 1560804245, - "updated": 1560804245, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011325", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011325", - "attributes": { - "enabled": true, - "created": 1560804245, - "updated": 1560804245, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011326", - "deletedDate": 1560804245, - "scheduledPurgeDate": 1568580245, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011326", - "attributes": { - "enabled": true, - "created": 1560804245, - "updated": 1560804245, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011327", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011327", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011328", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011328", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011329", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011329", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601133", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601133", - "attributes": { - "enabled": true, - "created": 1560804241, - "updated": 1560804241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011330", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011330", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011331", - "deletedDate": 1560804246, - "scheduledPurgeDate": 1568580246, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011331", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011332", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011332", - "attributes": { - "enabled": true, - "created": 1560804246, - "updated": 1560804246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011333", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011333", - "attributes": { - "enabled": true, - "created": 1560804247, - "updated": 1560804247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16UWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16UWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "94bf6e34dd0be4dba276c46bdad1b9cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "36c98cb9-19ed-4a12-9d28-38c32ae79227", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011334", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011334", - "attributes": { - "enabled": true, - "created": 1560804247, - "updated": 1560804247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011335", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011335", - "attributes": { - "enabled": true, - "created": 1560804247, - "updated": 1560804247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011336", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011336", - "attributes": { - "enabled": true, - "created": 1560804247, - "updated": 1560804247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011337", - "deletedDate": 1560804247, - "scheduledPurgeDate": 1568580247, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011337", - "attributes": { - "enabled": true, - "created": 1560804247, - "updated": 1560804247, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011338", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011338", - "attributes": { - "enabled": true, - "created": 1560804248, - "updated": 1560804248, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011339", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011339", - "attributes": { - "enabled": true, - "created": 1560804248, - "updated": 1560804248, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601134", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601134", - "attributes": { - "enabled": true, - "created": 1560804241, - "updated": 1560804241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011340", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011340", - "attributes": { - "enabled": true, - "created": 1560804248, - "updated": 1560804248, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011341", - "deletedDate": 1560804248, - "scheduledPurgeDate": 1568580248, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011341", - "attributes": { - "enabled": true, - "created": 1560804248, - "updated": 1560804248, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011342", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011342", - "attributes": { - "enabled": true, - "created": 1560804248, - "updated": 1560804248, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011343", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011343", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011344", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011344", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011345", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011345", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpORFV2TURsRU1FUkJRMEpFUXpCQ05FSXlNemd3TWpWQ01VSkZSVGxGT1RjMk9UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOalU0T0RZd01URXpORFV2TURsRU1FUkJRMEpFUXpCQ05FSXlNemd3TWpWQ01VSkZSVGxGT1RjMk9UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d71e36e82d1af31e5bb1a480c9930085", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4128", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "88b97c6e-bc6e-4871-b109-0f9aa8a94161", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011346", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011346", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011347", - "deletedDate": 1560804249, - "scheduledPurgeDate": 1568580249, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011347", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011348", - "deletedDate": 1560804250, - "scheduledPurgeDate": 1568580250, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011348", - "attributes": { - "enabled": true, - "created": 1560804249, - "updated": 1560804249, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011349", - "deletedDate": 1560804250, - "scheduledPurgeDate": 1568580250, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/165886011349", - "attributes": { - "enabled": true, - "created": 1560804250, - "updated": 1560804250, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601135", - "deletedDate": 1560804241, - "scheduledPurgeDate": 1568580241, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601135", - "attributes": { - "enabled": true, - "created": 1560804241, - "updated": 1560804241, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601136", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601136", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601137", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601137", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601138", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601138", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601139", - "deletedDate": 1560804242, - "scheduledPurgeDate": 1568580242, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/16588601139", - "attributes": { - "enabled": true, - "created": 1560804242, - "updated": 1560804242, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1667779688", - "deletedDate": 1560273656, - "scheduledPurgeDate": 1568049656, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1667779688", - "attributes": { - "enabled": true, - "created": 1560273656, - "updated": 1560273656, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577610", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577610", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577611", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577611", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "74b1b8e508abd9e13bca06366f8e19b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4af25f3c-9845-4607-874b-1b8f46240b6d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577612", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577612", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577613", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577613", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577614", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577614", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577615", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577615", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577616", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577616", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577617", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577617", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577618", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577618", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577619", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577619", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577620", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577620", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577621", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577621", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577622", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577622", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577623", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577623", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577624", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577624", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNalF2TVVVMk1qRTNNRFJCT0RsRE5FSkJOamsxTUVNd056Z3lNa0V6UmpNeU5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNalF2TVVVMk1qRTNNRFJCT0RsRE5FSkJOamsxTUVNd056Z3lNa0V6UmpNeU5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2d179f1bf86906f44fcb3859385a1b0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4142", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d8c18e0f-ae0c-4227-a876-4c486e7a716a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577625", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577625", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577626", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577626", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577627", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577627", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577628", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577628", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577629", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577629", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577630", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577630", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577631", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577631", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577632", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577632", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577633", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577633", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577634", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577634", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577635", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577635", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577636", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577636", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "21863f75451fe02054449b4f27e883cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "999e5cd1-75b2-4c7e-9cc4-a22c02b11aca", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577637", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577637", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577638", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577638", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577639", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577639", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577640", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577640", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577641", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577641", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577642", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577642", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577643", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577643", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577644", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577644", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577645", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577645", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577646", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577646", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577647", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577647", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577648", - "deletedDate": 1559861485, - "scheduledPurgeDate": 1567637485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577648", - "attributes": { - "enabled": true, - "created": 1559861485, - "updated": 1559861485, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577649", - "deletedDate": 1559861485, - "scheduledPurgeDate": 1567637485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577649", - "attributes": { - "enabled": true, - "created": 1559861485, - "updated": 1559861485, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJORGt2TVVRNFJURTJORGREUTBFeE5FRkVNamxDTlRGRlFrRXdPVVV3TkRnNU5qVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJORGt2TVVRNFJURTJORGREUTBFeE5FRkVNamxDTlRGRlFrRXdPVVV3TkRnNU5qVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2a65eb98d37ced1cc4ab24dfcf88a0e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2832", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79371bd6-8b3f-4a08-bda2-6839d133ff50", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1856453306", - "deletedDate": 1560272567, - "scheduledPurgeDate": 1568048567, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1856453306", - "attributes": { - "enabled": true, - "created": 1560272567, - "updated": 1560272567, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d0", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d0", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d1", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d1", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d10", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d10", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d11", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d11", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d12", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d12", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d13", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d13", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "30c1f7aff708d6997f37d8245ca4de67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7aa375a1-7119-40bf-8bd2-aa9946d9ffe5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d14", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d14", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d15", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d15", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d16", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d16", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d17", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d17", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d18", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d18", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d19", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d19", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d2", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d2", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d20", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d20", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d21", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d21", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d22", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d22", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d23", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d23", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d24", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d24", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d25", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d25", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRJMUwwWXhNVUV3TkVSRk9ESTJSalJDT1VVNE1UazRORUU1TUVVeFJqSkZOemRHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRJMUwwWXhNVUV3TkVSRk9ESTJSalJDT1VVNE1UazRORUU1TUVVeFJqSkZOemRHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4dc16b48f1f5a29223985d74204010cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "00d8b2a6-6da3-4315-8c41-c2d72b58e935", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d26", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d26", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d27", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d27", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d28", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d28", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d29", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d29", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d3", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d3", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d30", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d30", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d31", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d31", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d32", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d32", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d33", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d33", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d34", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d34", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d35", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d35", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d36", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d36", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2fa0b9a45227a0c4528eaa44faf79020", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0ccac4dc-16a5-431b-a421-60ad5a9850e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d37", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d37", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d38", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d38", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d39", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d39", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d4", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d4", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d40", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d40", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d41", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d41", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d42", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d42", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d43", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d43", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d44", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d44", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d45", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d45", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d46", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d46", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d47", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d47", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d48", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d48", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRRNEx6azJOakpGTlVFM05USTFRalJDTlVVNVFqYzBNRU5DUVVFMk5UVkJNek0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRRNEx6azJOakpGTlVFM05USTFRalJDTlVVNVFqYzBNRU5DUVVFMk5UVkJNek0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6497bdcc53c7bdec651e0d6f9a25b53e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3098", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "67e9ed3a-7c82-4982-a8b4-4e0f97f013c3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d49", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d49", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d5", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d5", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d6", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d6", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d7", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d7", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d8", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d8", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d9", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d9", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1876230623", - "deletedDate": 1560273351, - "scheduledPurgeDate": 1568049351, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1876230623", - "attributes": { - "enabled": true, - "created": 1560273351, - "updated": 1560273351, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/188481008", - "deletedDate": 1560273340, - "scheduledPurgeDate": 1568049340, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/188481008", - "attributes": { - "enabled": true, - "created": 1560273340, - "updated": 1560273340, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a2800c26af03f540a620fa66464da72b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "654", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f500a573-9543-4df8-845a-c0fc77e76a8b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/235081672", - "deletedDate": 1560273145, - "scheduledPurgeDate": 1568049145, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/235081672", - "attributes": { - "enabled": true, - "created": 1560273144, - "updated": 1560273144, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXhOUzlET1RrME5qSTJRVUpHTlVZMFFVVkNPVVUwTkVVME1Ua3dSamN4TnpreVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXhOUzlET1RrME5qSTJRVUpHTlVZMFFVVkNPVVUwTkVVME1Ua3dSamN4TnpreVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "63a73d07aba95004cde3c9084554062d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "82992b0e-74be-4e11-8053-fc39c79325f0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ee1e6cd9ed771d1c7ca1bda659857718", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38265c04-0f15-495c-b740-9ce7b37c8714", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXpPQzh5UmtWRk9EUTBOMFZDTlRBME9UVkRPRUZCUmtRd1EwTkVSalU0UmtGRk9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXpPQzh5UmtWRk9EUTBOMFZDTlRBME9UVkRPRUZCUmtRd1EwTkVSalU0UmtGRk9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "5d67e277527d7a94072fd520e538af52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8f1e01d8-e6f6-4fbd-8615-09477063a5f8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d98ccd1ab82f1ab3208ae608ee5ef747", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2574", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "41ddf9e9-67de-4259-b819-5cf88f20fc37", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/264708401", - "deletedDate": 1560272535, - "scheduledPurgeDate": 1568048535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/264708401", - "attributes": { - "enabled": true, - "created": 1560272535, - "updated": 1560272535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828910", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828910", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828911", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828911", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828912", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828912", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828913", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828913", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828914", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828914", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828915", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828915", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3hOUzlGUVVGRE16TXlSRGt5TkVRMFJrTTNPRFpFUXpkQ01qazBNVVUzTTBNMU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3hOUzlGUVVGRE16TXlSRGt5TkVRMFJrTTNPRFpFUXpkQ01qazBNVVUzTTBNMU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6390b16ba9ec87afd8a3e64818fc3844", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "032cae41-b693-4eda-adc7-daa7810bef23", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828916", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828916", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828917", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828917", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828918", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828918", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828919", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828919", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982892", - "deletedDate": 1559860364, - "scheduledPurgeDate": 1567636364, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982892", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828920", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828920", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828921", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828921", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828922", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828922", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828923", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828923", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828924", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828924", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828925", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828925", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828926", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828926", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8c8c6bf29df9bee82e4d3cf36b8c8ca9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4496", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "59fdf23a-031f-4bc6-b44d-50a97f2f1bb7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828927", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828927", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828928", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828928", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828929", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828929", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982893", - "deletedDate": 1559860364, - "scheduledPurgeDate": 1567636364, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982893", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828930", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828930", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828931", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828931", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828932", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828932", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828933", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828933", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828934", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828934", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828935", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828935", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828936", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828936", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828937", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828937", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828938", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828938", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3pPQzlCUmtZd00wRTVRakl4TnpFME5UZzFPVEk0TWpBMU1ESXdSVUpGUVVZeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3pPQzlCUmtZd00wRTVRakl4TnpFME5UZzFPVEk0TWpBMU1ESXdSVUpGUVVZeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "33b48d384ca871651d05018bd26b0124", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc8fb85b-13e3-48a2-81be-e8f289e73dad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828939", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828939", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982894", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982894", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828940", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828940", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828941", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828941", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828942", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828942", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828943", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828943", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828944", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828944", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828945", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828945", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828946", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828946", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828947", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828947", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828948", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828948", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828949", - "deletedDate": 1559860374, - "scheduledPurgeDate": 1567636374, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828949", - "attributes": { - "enabled": true, - "created": 1559860374, - "updated": 1559860374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8216a2516ad1ce4ec9d1349f6cbc1c4c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1928", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac25b521-3512-4ac1-b031-bf0787f94bfc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982895", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982895", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982896", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982896", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982897", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982897", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982898", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982898", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982899", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982899", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHpNamd6TVRZMU56UTBMemRCUVVFMVFqaEVORUl3UmpRNE1UZzVOMEk0UXpoRlJVSTRSVGMxUmtORUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHpNamd6TVRZMU56UTBMemRCUVVFMVFqaEVORUl3UmpRNE1UZzVOMEk0UXpoRlJVSTRSVGMxUmtORUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8b0f3d160447a59c061b6ef39c5decc3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3928", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b3a5200f-f940-4c6c-a565-4333924df152", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/382171165", - "deletedDate": 1559861852, - "scheduledPurgeDate": 1567637852, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/382171165", - "attributes": { - "enabled": true, - "created": 1559861852, - "updated": 1559861852, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e0", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e0", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e1", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e1", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e10", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e10", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e11", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e11", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e12", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e12", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e13", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e13", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e14", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e14", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e15", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e15", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e16", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e16", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c8a1184c0a76cdd73ee66ad617c60461", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a38c3c08-596e-4c90-b330-cb41abf462d9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e17", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e17", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e18", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e18", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e19", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e19", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e2", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e2", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e20", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e20", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e21", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e21", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e22", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e22", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e23", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e23", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e24", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e24", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e25", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e25", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e26", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e26", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e27", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e27", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e28", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e28", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRJNEx6UXpSRUV6TURreFJUWTBOalJFT0VGQ01FWXdOemxHUXpVeVFUTTRRakV3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRJNEx6UXpSRUV6TURreFJUWTBOalJFT0VGQ01FWXdOemxHUXpVeVFUTTRRakV3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9574b5e9765b4ddc06707bb6fc5a326b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4707", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "60131db3-73d6-4aa0-83f8-5ca2da2b9fb0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e29", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e29", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e3", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e3", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e30", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e30", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e31", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e31", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e32", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e32", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e33", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e33", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e34", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e34", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e35", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e35", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e36", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e36", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e37", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e37", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e38", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e38", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e39", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e39", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "545271e4531a0cd665414c619ac58d40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5c074b66-1193-47a3-9412-6148472c4d6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e4", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e4", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e40", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e40", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e41", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e41", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e42", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e42", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e43", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e43", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e44", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e44", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e45", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e45", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e46", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e46", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e47", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e47", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e48", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e48", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e49", - "deletedDate": 1559859794, - "scheduledPurgeDate": 1567635794, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e49", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e5", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e5", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e6", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e6", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNTYhTURBd01EY3pJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRZdk1FTTVOalUwT1RCRE1UY3hORE01TmtGQk9VVTRORFZCTXpsRVJESXpPREloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNTYhTURBd01EY3pJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRZdk1FTTVOalUwT1RCRE1UY3hORE01TmtGQk9VVTRORFZCTXpsRVJESXpPREloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e70a0c1657e8d5673b54c2058f21d1e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c42da3a3-cf1b-4da6-b560-f9e518f31ec7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e7", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e7", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e8", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e8", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e9", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e9", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/424334199", - "deletedDate": 1560272556, - "scheduledPurgeDate": 1568048556, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/424334199", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560272556, - "updated": 1560272556, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/464677825", - "deletedDate": 1560272715, - "scheduledPurgeDate": 1568048715, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/464677825", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560272715, - "updated": 1560272715, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/489076644", - "deletedDate": 1560272681, - "scheduledPurgeDate": 1568048681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/489076644", - "attributes": { - "enabled": true, - "created": 1560272680, - "updated": 1560272680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/498681213", - "deletedDate": 1560272435, - "scheduledPurgeDate": 1568048435, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/498681213", - "attributes": { - "enabled": true, - "created": 1560272435, - "updated": 1560272435, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c230", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c230", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c231", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c231", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2310", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2310", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2311", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2311", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a6f2feb4b0739547de682f192a7bb240", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2b37c230-83d4-47ed-9838-d2d8a84835d2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2312", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2312", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2313", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2313", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2314", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2314", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2315", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2315", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2316", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2316", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2317", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2317", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2318", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2318", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2319", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2319", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c232", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c232", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2320", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2320", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2321", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2321", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2322", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2322", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2323", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2323", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpJekx6Z3hSREl6UWpKRU5FVkRORFF3TkRnNVJESXdOVVUzT0RkRk9Ea3lOREU1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpJekx6Z3hSREl6UWpKRU5FVkRORFF3TkRnNVJESXdOVVUzT0RkRk9Ea3lOREU1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ef9f3ae24b4f8c83097c19c590d07c44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f7a175ea-3fa7-47d9-81ab-8c7d223e8c78", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2324", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2324", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2325", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2325", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2326", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2326", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2327", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2327", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2328", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2328", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2329", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2329", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c233", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c233", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2330", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2330", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2331", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2331", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2332", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2332", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2333", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2333", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2334", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2334", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9cac6870e7d366cdc575087f284dabbf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7d804853-54ef-491c-b0da-9cd70d24cfe6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2335", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2335", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2336", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2336", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2337", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2337", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2338", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2338", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2339", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2339", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c234", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c234", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2340", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2340", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2341", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2341", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2342", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2342", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2343", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2343", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2344", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2344", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2345", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2345", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2346", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2346", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpRMkwwSkVNRFZGUWpsQ016VTNOalEyUmtVNU1EWTFOa0ZDTVRJMlFqSkRNemN5SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpRMkwwSkVNRFZGUWpsQ016VTNOalEyUmtVNU1EWTFOa0ZDTVRJMlFqSkRNemN5SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "542381a2e18169947b659df69681040e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3507", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1e01e25b-c3c4-4abd-bf20-52167e6dfc07", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2347", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2347", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2348", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2348", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2349", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2349", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c235", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c235", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c236", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c236", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c237", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c237", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c238", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c238", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c239", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c239", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/685908836", - "deletedDate": 1560274301, - "scheduledPurgeDate": 1568050301, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/685908836", - "attributes": { - "enabled": true, - "created": 1560274279, - "updated": 1560274279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c2a9ebeb16cefb6d6d3929da420364bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3631", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0d0d8260-c75d-4d51-8a76-4a02ea2f0b7b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/775828049", - "deletedDate": 1560272727, - "scheduledPurgeDate": 1568048727, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/775828049", - "attributes": { - "enabled": true, - "created": 1560272726, - "updated": 1560272727, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/785331417", - "deletedDate": 1560273155, - "scheduledPurgeDate": 1568049155, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/785331417", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560273155, - "updated": 1560273155, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/822148868", - "deletedDate": 1560272524, - "scheduledPurgeDate": 1568048524, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/822148868", - "attributes": { - "enabled": true, - "created": 1560272524, - "updated": 1560272524, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680635", - "deletedDate": 1559860070, - "scheduledPurgeDate": 1567636070, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680635", - "attributes": { - "enabled": true, - "created": 1559860070, - "updated": 1559860070, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680636", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680636", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680637", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680637", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680638", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680638", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680639", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680639", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680640", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680640", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRRVGsxUVRVMFJVWXhNelEwUXpZeU9EZzNSRGd6TlRZeVJqazNOamd3TmpRd0x6QkJOVVpGT1VNeE9UVXdNalEyT0RjNU1VWkNSalZFUkVJeE5EbEVOakJDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRRVGsxUVRVMFJVWXhNelEwUXpZeU9EZzNSRGd6TlRZeVJqazNOamd3TmpRd0x6QkJOVVpGT1VNeE9UVXdNalEyT0RjNU1VWkNSalZFUkVJeE5EbEVOakJDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0e2359d028ac8fc3d343216e4ad6cf44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f3dd53a1-c888-4b84-993f-4c006043942c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680641", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680641", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680642", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680642", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680643", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680643", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680644", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680644", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680645", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680645", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680646", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680646", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680647", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680647", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680648", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680648", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680649", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680649", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e47", - "deletedDate": 1559860119, - "scheduledPurgeDate": 1567636119, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e47", - "attributes": { - "enabled": true, - "created": 1559860119, - "updated": 1559860119, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e48", - "deletedDate": 1559860119, - "scheduledPurgeDate": 1567636119, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e48", - "attributes": { - "enabled": true, - "created": 1559860119, - "updated": 1559860119, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e49", - "deletedDate": 1559860120, - "scheduledPurgeDate": 1567636120, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e49", - "attributes": { - "enabled": true, - "created": 1559860120, - "updated": 1559860120, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3c93f970e9a48cf01428e648b7b92677", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2de5c3e5-cab4-4c87-877e-af034ef1980d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe10", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe10", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe11", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe11", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe12", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe12", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe13", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe13", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe14", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe14", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe15", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe15", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe16", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe16", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe17", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe17", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe18", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe18", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe19", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe19", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe2", - "deletedDate": 1559859191, - "scheduledPurgeDate": 1567635191, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe2", - "attributes": { - "enabled": true, - "created": 1559859191, - "updated": 1559859191, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe20", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe20", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe21", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe21", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRJeEwwVkRSak0zTlROQ1EwUXlNRFF3UkVNNVJFSTJNell6UWpsRU5VTTFSVFE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRJeEwwVkRSak0zTlROQ1EwUXlNRFF3UkVNNVJFSTJNell6UWpsRU5VTTFSVFE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3d25e100f55ec361281aee8bf5feb097", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5d80041b-90af-4c64-88c9-812b498f61ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe22", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe22", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe23", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe23", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe24", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe24", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe25", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe25", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe26", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe26", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe27", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe27", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe28", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe28", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe29", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe29", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe3", - "deletedDate": 1559859191, - "scheduledPurgeDate": 1567635191, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe3", - "attributes": { - "enabled": true, - "created": 1559859191, - "updated": 1559859191, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe30", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe30", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe31", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe31", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe32", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe32", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "496ae569276fe7166897fa84427bd71a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "00172284-cdb7-4f45-82bc-8a539fcf6650", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe33", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe33", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe34", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe34", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe35", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe35", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe36", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe36", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe37", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe37", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe38", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe38", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe39", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe39", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe4", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe4", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe40", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe40", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe41", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe41", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe42", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe42", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe43", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe43", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe44", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe44", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRRMEwwVkVPRUl5TURreU1VTXpRalE1UkVJNU1EY3lNa1pETnprM05ERkdSRVUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRRMEwwVkVPRUl5TURreU1VTXpRalE1UkVJNU1EY3lNa1pETnprM05ERkdSRVUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "686da91d92b07ae597d0148afb659715", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3923", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a83283b-a281-41e3-865b-705ce30ad538", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe45", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe45", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe46", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe46", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe47", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe47", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe48", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe48", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe49", - "deletedDate": 1559859201, - "scheduledPurgeDate": 1567635201, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe49", - "attributes": { - "enabled": true, - "created": 1559859201, - "updated": 1559859201, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe5", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe5", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe6", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe6", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe7", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe7", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe8", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe8", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe9", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe9", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d1de4f77dc4ed807cb3ed4c7fbdd80ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4170", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "60799f4b-2c8c-49b0-a2d2-2542877c3a93", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/929589906", - "deletedDate": 1560273758, - "scheduledPurgeDate": 1568049758, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/929589906", - "attributes": { - "enabled": true, - "created": 1560273757, - "updated": 1560273757, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534780", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534780", - "attributes": { - "enabled": true, - "created": 1560272641, - "updated": 1560272641, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534781", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534781", - "attributes": { - "enabled": true, - "created": 1560272641, - "updated": 1560272641, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347810", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347810", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347811", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347811", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347812", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347812", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347813", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347813", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347814", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347814", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347815", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347815", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347816", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347816", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347817", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347817", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347818", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347818", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3hPQzh3TlVaRU1qaEZPRGMxUVRRME5UUkVPVFl6UVVaRU1qZ3pNME13T0RWQlJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3hPQzh3TlVaRU1qaEZPRGMxUVRRME5UUkVPVFl6UVVaRU1qZ3pNME13T0RWQlJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4b6dd4424891d6e600f0b19e138beb03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "114cc765-364e-47df-9810-986ba1fb2a94", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347819", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347819", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534782", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534782", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347820", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347820", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347821", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347821", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347822", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347822", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347823", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347823", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347824", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347824", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347825", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347825", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347826", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347826", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347827", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347827", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347828", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347828", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347829", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347829", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f30de400059c40cba2959d71be1e7eba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "80a3560d-3f3a-4207-b972-cf51269be0cf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534783", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534783", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347830", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347830", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347831", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347831", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347832", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347832", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347833", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347833", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347834", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347834", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347835", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347835", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347836", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347836", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347837", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347837", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347838", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347838", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347839", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347839", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534784", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534784", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347840", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347840", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56ZzBNQzlHUlVFek0wUkNRemswUXpNME0wTXhRa1k0UkVJMFFUVkJSakEzUmtRMVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56ZzBNQzlHUlVFek0wUkNRemswUXpNME0wTXhRa1k0UkVJMFFUVkJSakEzUmtRMVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2748674f4bf72f846808d15e2b68c53f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a8ec23ea-74dd-4c93-9c47-f4b99d524b03", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347841", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347841", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347842", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347842", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347843", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347843", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347844", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347844", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347845", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347845", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347846", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347846", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347847", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347847", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347848", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347848", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347849", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347849", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534785", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534785", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534786", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534786", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534787", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534787", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "17c7d0538dcf3c10082ca8fcab7518e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4170", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "840988e0-50df-44ea-a2c3-e0a01b12fa30", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534788", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534788", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534789", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534789", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894790", - "deletedDate": 1560272462, - "scheduledPurgeDate": 1568048462, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894790", - "attributes": { - "enabled": true, - "created": 1560272462, - "updated": 1560272462, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894791", - "deletedDate": 1560272462, - "scheduledPurgeDate": 1568048462, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894791", - "attributes": { - "enabled": true, - "created": 1560272462, - "updated": 1560272462, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947910", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947910", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947911", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947911", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947912", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947912", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947913", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947913", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947914", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947914", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947915", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947915", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947916", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947916", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947917", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947917", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3hOeTlGUmpZeU5UQkZSalEzTlVZME5UUkVPRGREUlRrNVJUTkdNRUkyUWtSRU9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3hOeTlGUmpZeU5UQkZSalEzTlVZME5UUkVPRGREUlRrNVJUTkdNRUkyUWtSRU9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ab4ff671c443b40b5fde8a93346c1539", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8fd1221c-7fba-4e68-955c-9d89c445c52d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947918", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947918", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947919", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947919", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894792", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894792", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947920", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947920", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947921", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947921", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947922", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947922", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947923", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947923", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947924", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947924", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947925", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947925", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947926", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947926", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947927", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947927", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947928", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947928", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ed1e5dcf6757c1eb560b1ecba38883f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8d5f0267-6323-4970-93ce-40e6ddb3ff65", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947929", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947929", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894793", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894793", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947930", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947930", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947931", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947931", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947932", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947932", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947933", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947933", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947934", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947934", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947935", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947935", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947936", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947936", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947937", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947937", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947938", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947938", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947939", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947939", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894794", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894794", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azBMME0yTmpkRE16VTRPVU5DTkRRek0wVkNORVV4T0Rrd00wTTFPRGxEUVRGRklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azBMME0yTmpkRE16VTRPVU5DTkRRek0wVkNORVV4T0Rrd00wTTFPRGxEUVRGRklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "34edeff019198ffcc513b7f1037d089c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4114", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "16b9ecf4-72d0-45bf-a1dc-475975b8245b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947940", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947940", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947941", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947941", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947942", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947942", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947943", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947943", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947944", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947944", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947945", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947945", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947946", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947946", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947947", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947947", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947948", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947948", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947949", - "deletedDate": 1559864540, - "scheduledPurgeDate": 1567640540, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947949", - "attributes": { - "enabled": true, - "created": 1559864540, - "updated": 1559864540, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894795", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894795", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894796", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894796", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4d2c6f172b560a8a0b8d5437a54011d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5051", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d81b5dc7-7c55-4697-a3ce-2025f51b65c6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894797", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894797", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894798", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894798", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894799", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894799", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/969253067", - "deletedDate": 1560207326, - "scheduledPurgeDate": 1567983326, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/969253067", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560207325, - "updated": 1560207325, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd10", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd10", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd11", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd11", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd12", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd12", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd13", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd13", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd14", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd14", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd15", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd15", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd16", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd16", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd17", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd17", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd18", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd18", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRFNEwwSkNRVFV5UkRReVJqQkJNRFF4UkVWQk5UY3hORVZCTXpkQk1qWXdOMFJHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRFNEwwSkNRVFV5UkRReVJqQkJNRFF4UkVWQk5UY3hORVZCTXpkQk1qWXdOMFJHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "44a3975ae07eb520618f2744aff9bed9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "68dd4a1a-9e96-4159-b28d-1643e099e32f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd19", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd19", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd20", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd20", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd21", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd21", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd22", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd22", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd23", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd23", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd24", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd24", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd25", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd25", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd26", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd26", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd27", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd27", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd28", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd28", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd29", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd29", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd30", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd30", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "33b38203365bc59c65e3288cc4c4e985", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "00f39aa1-4516-4490-b6f3-1edba0c7a65d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd31", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd31", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd32", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd32", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd33", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd33", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd34", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd34", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd35", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd35", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd36", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd36", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd37", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd37", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd38", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd38", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd39", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd39", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd4", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd4", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd40", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd40", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd41", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd41", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd42", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd42", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRReUx6VkdRa1V5T1VSRU1VVkJOelF5T0RjNVJqWTJORVkxUmpNMk5FTkVSVFV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRReUx6VkdRa1V5T1VSRU1VVkJOelF5T0RjNVJqWTJORVkxUmpNMk5FTkVSVFV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6b97e001c4d9361d4f76ecc703455a12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4704", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ec64c87-da3d-49eb-9349-983740803add", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd43", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd43", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd44", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd44", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd45", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd45", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd46", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd46", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd47", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd47", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd48", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd48", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd49", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd49", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd5", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd5", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd6", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd6", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd7", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd7", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd8", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd8", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd9", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd9", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "23347bcedd8c247bfadede9bb793f19c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "57044aa2-a552-4430-ab2e-6a8ab94ef302", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a210", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a210", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a211", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a211", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a212", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a212", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a213", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a213", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a214", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a214", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a215", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a215", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a216", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a216", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a217", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a217", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a218", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a218", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a219", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a219", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a22", - "deletedDate": 1559859577, - "scheduledPurgeDate": 1567635577, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a22", - "attributes": { - "enabled": true, - "created": 1559859577, - "updated": 1559859577, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a220", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a220", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a221", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a221", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpJeEx6TXdRVVEzTkRZek9ERTVOVFEzTWpWQ01UQXpSRUkxTnpBME1qbEVOemd3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpJeEx6TXdRVVEzTkRZek9ERTVOVFEzTWpWQ01UQXpSRUkxTnpBME1qbEVOemd3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "cf42a2a552623eff647ce4e549d5c120", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "12903041-e67a-49ae-89ce-9e45d28a2ea7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a222", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a222", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a223", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a223", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a224", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a224", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a225", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a225", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a226", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a226", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a227", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a227", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a228", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a228", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a229", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a229", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a23", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a23", - "attributes": { - "enabled": true, - "created": 1559859577, - "updated": 1559859577, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a230", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a230", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a231", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a231", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a232", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a232", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "49bd1688c68f24f8647371fbe5817fbb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8013e5b0-deb0-4f61-8b78-789fde465019", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a233", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a233", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a234", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a234", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a235", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a235", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a236", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a236", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a237", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a237", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a238", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a238", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a239", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a239", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a24", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a24", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a240", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a240", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a241", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a241", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a242", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a242", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a243", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a243", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a244", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a244", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpRMEx6Z3dOa1pDTmtZd01UaEdNalJGUWtWQ1FqaEVRMFJFTXpFd01qSkZSRVJESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpRMEx6Z3dOa1pDTmtZd01UaEdNalJGUWtWQ1FqaEVRMFJFTXpFd01qSkZSRVJESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "60214f858a037bb07cf5be10f896da25", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3677", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:44:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9b8819fe-7c1a-4642-9bbf-04504a106f53", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a245", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a245", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a246", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a246", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a247", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a247", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a248", - "deletedDate": 1559859587, - "scheduledPurgeDate": 1567635587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a248", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a249", - "deletedDate": 1559859587, - "scheduledPurgeDate": 1567635587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a249", - "attributes": { - "enabled": true, - "created": 1559859587, - "updated": 1559859587, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a25", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a25", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a26", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a26", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a27", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a27", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a28", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a28", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a29", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a29", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": null - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601130?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1a521979c5c94936db3fe5e1fbee9fc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d8fe0fdb-84c9-4414-be76-03918180fb2d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601131?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601136?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2f7a49c4fedbda5a92a949f3751d8697", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d7e46a0a-ddcd-4232-b589-e78b67a7b4ad", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601132?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1e35718680aa86e355ab23544d163732", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b2ee1972-e0bb-4362-a9d2-2dc75a24c1a9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601133?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "627c7d89ef3a7b4abe77881f7b43d4bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7799c458-44f7-4144-a572-02c38e7bbb12", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601134?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "895b4db980b9441d66f4da30da058d7b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0ce168db-1162-489c-bddd-bdbb6ca259bc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601135?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f769177223a1975d27ba5f32f7c30a12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "455e0826-daf6-4f92-b261-32bd73331261", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601136?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ff9b65d7adba09796037fc451419a0b8", + "x-ms-client-request-id": "542381a2e18169947b659df69681040e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:54 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b5ff8f71-08e3-4609-b35d-957970e0189d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6e0fd773-c1b9-4766-9cd0-73f3709a1cb4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601137?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601137?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "64ad0ce9dcda951cf0c461fe21ea4ca2", + "x-ms-client-request-id": "c2a9ebeb16cefb6d6d3929da420364bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c57df9fa-2eb5-4fbc-b009-098e8d75d5ed", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4e3e9f0e-1a3c-437a-b131-718a0a11e00d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601138?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601138?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ff9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7459c7ea8d6ac4c19e6097692717820d", + "x-ms-client-request-id": "0e2359d028ac8fc3d343216e4ad6cf44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "91b3c95e-70ff-4027-a404-a52b64d2585b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dcf0b0cf-80c8-42a8-a60c-cf199a22b320", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/16588601139?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f16588601139?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ffa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "eb48a619a516fa3848060ff64c7ae876", + "x-ms-client-request-id": "3c93f970e9a48cf01428e648b7b92677", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79e11025-46b5-4129-b4fa-191eae0ff57e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "91a3b83a-285d-4d07-88bc-c140bdf0fc18", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011310?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011310?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ffb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4d5b59eb2cc05c4e4be8c57a45b36dd8", + "x-ms-client-request-id": "3d25e100f55ec361281aee8bf5feb097", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b919d35c-0aa3-414f-af7a-85f231c699f9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "59bc564b-93db-48c3-8602-fac72e3552f7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011311?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011311?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ffc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7ae5534160a1448b8f5e2b637eca7823", + "x-ms-client-request-id": "496ae569276fe7166897fa84427bd71a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a270b22-25ea-439f-b5a2-96ca42b1c309", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bd8ec9e7-45ae-4859-a022-7a423abd81e2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011312?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011312?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ffd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ce7e207735bced4d57eca02edfbeb595", + "x-ms-client-request-id": "686da91d92b07ae597d0148afb659715", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "359efe43-a77e-4678-aa5a-de0d9c8be758", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a3df5c76-a952-4bd1-8f11-60b778b8e500", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011313?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011313?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297ffe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f8b437996d958ad5ce17bd6100ebdd80", + "x-ms-client-request-id": "d1de4f77dc4ed807cb3ed4c7fbdd80ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "74d0c252-6f82-4011-bc9f-6cb9e44cd249", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a2bdeae2-c03f-4ffb-815a-709dd57cb47f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011314?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011314?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4297fff-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2402a16f9f350c1c06f722b4c05d64d1", + "x-ms-client-request-id": "4b6dd4424891d6e600f0b19e138beb03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c3e051a-0e0b-4d03-9606-b1ed0917ee30", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e64f6949-f489-4be5-a910-d2f6f1725b28", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011315?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011315?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298000-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "47ca96a980160a8e4bf4ffa477ebec6c", + "x-ms-client-request-id": "f30de400059c40cba2959d71be1e7eba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae9d82b5-9f7d-47dd-b724-d7a91a44bffd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ad151ecf-da27-496f-a28b-cd76bf45bba1", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011316?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011316?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298001-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3dbe200e90bbfa601aa7f19d4b20ca70", + "x-ms-client-request-id": "2748674f4bf72f846808d15e2b68c53f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab6f5ba7-9b99-411d-8edc-8d3df2fc0302", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a4d2345e-5ff4-4d5e-89f3-8cb37112bb58", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011317?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011317?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298002-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6ab8ecb29620ef6a13f8d8409f77951a", + "x-ms-client-request-id": "17c7d0538dcf3c10082ca8fcab7518e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:55 GMT", + "Date": "Tue, 06 Aug 2019 17:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ced47d74-6dca-4834-a79e-2c9436335627", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "16e4cee8-4816-4fbe-9a98-fe995dc81c0f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011318?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011318?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298003-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9fa5b50a269f181535d02c6e8ef0be2b", + "x-ms-client-request-id": "ab4ff671c443b40b5fde8a93346c1539", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d7421ff1-943d-4d2d-9f54-84647d6e98da", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "909808d3-5a68-4845-8fe5-6ee7ae82ec08", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011319?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011319?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298004-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8bf18f298232784bb6ce2ac3b81f5aa2", + "x-ms-client-request-id": "ed1e5dcf6757c1eb560b1ecba38883f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "deedc658-8c34-4d45-a437-89b3e490bfe3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e0da96a8-b1f6-4fca-a792-133449d46764", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011320?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011320?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298005-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9593d6122a7a8cd1d6a035506afb6022", + "x-ms-client-request-id": "34edeff019198ffcc513b7f1037d089c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "83ecbebb-b3f7-4e15-a31f-5db61a634a74", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ae519b27-ceeb-4b74-a195-c39baa601122", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011321?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011321?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298006-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1017ad390a8588e76a2de9d1fc515f15", + "x-ms-client-request-id": "4d2c6f172b560a8a0b8d5437a54011d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6580f047-9e11-4969-9510-2cc0eeb23431", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "69b9bbc8-2493-49c5-accc-98337c58dfbf", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011322?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011322?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298007-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b75b8975295dffb0bd65b4924dfb0eba", + "x-ms-client-request-id": "44a3975ae07eb520618f2744aff9bed9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d841f80f-f73f-4b49-a5bc-9a49a4be1552", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0d8a03a2-6f48-4a51-932b-6f42aa0315d5", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011323?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011323?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298008-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0b8a076d4a08081cee0a2b4d40009085", + "x-ms-client-request-id": "33b38203365bc59c65e3288cc4c4e985", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8584ecfb-d99c-4933-8d10-05b6289110a6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "40f5482b-822e-4a4d-aa24-bdab02b3f0fb", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011324?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011324?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298009-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e0da1f40a9a00fc5fc17522055553b6e", + "x-ms-client-request-id": "6b97e001c4d9361d4f76ecc703455a12", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3aee8707-8c4d-47d1-98d0-9033ecd360a9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "17b96d04-2a25-465d-a114-a78591c4f23b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011325?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011325?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f4632f1f54c62b0d6c53c852fe62bfbd", + "x-ms-client-request-id": "23347bcedd8c247bfadede9bb793f19c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "21c6ff11-e9ed-421f-8504-0057a0376171", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c69bb8d0-a05d-48f7-86d8-4ce389e49413", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011326?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011326?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2d522fd52d20c41a417b0ef1f7fcb299", + "x-ms-client-request-id": "cf42a2a552623eff647ce4e549d5c120", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "27949365-4925-42d1-8774-6b1194008fbd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a35cbe3b-7d37-41f4-9b51-122e6bb8a39b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011327?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011327?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "112ebccf9b9cebbe11af734ce0731099", + "x-ms-client-request-id": "49bd1688c68f24f8647371fbe5817fbb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:56 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fdc349c5-0595-40ec-bfe9-4682e8c21b82", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c477c35e-a1fe-4f08-be44-2ffdee22ecc4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011328?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011328?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "264b94580d03f14d159eb24b451c3370", + "x-ms-client-request-id": "60214f858a037bb07cf5be10f896da25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "eb854047-5b83-4395-ab78-be11231893ef", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7247ce1-c693-47b5-87bb-0a7dad37fd5b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011329?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011329?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "42822fa1ae33392171661b71b9cde4ce", + "x-ms-client-request-id": "a112be1ca8d6de0caa1d6befe10459e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae2ae248-3c05-4626-91ee-1659b9d08964", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ee81b6e1-ba2b-47be-8d38-e025ffd6fb56", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011330?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011330?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429800f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6399746a8cb0c2966e3dfbfde872a6f5", + "x-ms-client-request-id": "fa5f29fd61b3fe1d6641cc9a08e72bcd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0b7b6f95-d5ec-4003-a00e-858670174931", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f5b2a790-86e4-4776-a28d-b7899a1b1262", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011331?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011331?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298010-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b0ab037bcef0a9657312b59cf1dc3747", + "x-ms-client-request-id": "27de4c98dd6edde54243b6e51fc19a77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "47520933-16fb-4079-9a7e-5b2594fc411b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "46c083b1-a854-4aea-b1d2-15c119a07256", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011332?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011332?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298011-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d0e0e4bad08315bf98c0d3f6b22350fe", + "x-ms-client-request-id": "cf12db9ce036bb71a0143b94db72d6c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b70b09b9-9289-4ef6-9fc0-b2efdd6026ef", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39e6a4e6-4777-46c1-98b0-e8eca9c6b8ea", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011333?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011333?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298012-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b5f526c033229bde0eefef9ed7f9d192", + "x-ms-client-request-id": "95569df131251f734382b770aa37dea4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3d5955c0-6036-4c00-a41d-10d43959e43c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "adcb8d16-653a-40b3-99ff-2bf3642cfede", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011334?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011334?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298013-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0443b405d591ab7244961830fb6ff750", + "x-ms-client-request-id": "2cfd55a75cd4b896da22865aa25001d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "474c96e5-a30c-41c1-ae9b-5331d8b805eb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b18483d2-112a-435d-96e0-9e6042c9067f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011335?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011335?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298014-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cbdcb6c181e686250645c193e0203e9e", + "x-ms-client-request-id": "81f3f36c056a6b5267f38cb428001068", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2a6e487f-6bcb-4d23-aad4-43a1f9c69fce", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b9ad69c1-afb2-4949-b094-2110c189287c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011336?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011336?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298015-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fef141ef4cdfeb6db349718c1bada09f", + "x-ms-client-request-id": "86ed9635aa7495ed079eba02aa197cf2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "92649908-7ffe-421f-b194-0ae89ed50e3c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d8de5f73-bc80-4386-b263-bb2c9b91b4da", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011337?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011337?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298016-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "20dd9ff7061d83ab8ebdfe4c13decb23", + "x-ms-client-request-id": "b704e7805d44a23a0292c4e1cfe28fda", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b20a85ce-38f1-4ccf-9c91-1f26eeee9fb6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "56165367-2490-47d0-9726-91272fcf5ea6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011338?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011338?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298017-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ba417958f97e757049f0179d10996a58", + "x-ms-client-request-id": "0c241d127b63c25b055d7acc4a4fc04e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:58 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b0429d1-3432-4528-8717-fb67c2ff72b6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2c0c6258-a3af-466c-b295-58e15dce0000", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011339?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011339?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298018-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "409c22a41d43e881956d6f224e20d7d4", + "x-ms-client-request-id": "4133997659fcd8245b4a83e2e50cc525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "837b7982-1556-4931-a39b-53e723726c26", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "627c9550-5985-453b-a130-ed5b40ec650c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011340?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011340?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298019-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a2344d7ee66cfe212f68d72cee0e73f5", + "x-ms-client-request-id": "8cf0e00e70f4058e8b41b1e7e36d57b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1bc41736-786c-4425-88bb-83d5a49c6f24", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "190779c3-0c5c-404b-a521-8b437435ad4e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011341?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011341?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f1a8a5528b423ae0f8582410894e2628", + "x-ms-client-request-id": "366b76d14eaeb8ddf94cb019f878ddf9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2d6d1390-eb09-4c66-b3bd-2e5fdf8966c5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f7076ef2-e12b-4f00-a2e9-4ee2b1f0e745", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011342?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011342?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c21e4319c864bdeb009e10da4654fa87", + "x-ms-client-request-id": "6abe5597345e06590a2eb5baa83cf4ee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c4f82499-0e8a-4d06-9252-5ec8dbc71f63", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "46e60f16-dd4d-4eca-bc41-cb3485215462", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011343?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011343?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a8d079fae678f3926cf9aa14c21074e1", + "x-ms-client-request-id": "6e10cff38fa1c076023892a7bf750c13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "339a0385-3724-47e6-9759-04826046dc0a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d9d87284-e0a6-47e2-b0b2-317969bed570", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011344?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011344?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ab13ae41b0ef8990b9eaf0a47a06f4a4", + "x-ms-client-request-id": "8e4fb864edae9d541d642b8098220fbd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0fc326f3-4133-4a8c-8fcf-352fc8b991c9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e9bb73a7-ee6f-4cf8-ab06-7486cb230262", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011345?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011345?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "10169c5d7e7e32b0b02b566b1ed7fbef", + "x-ms-client-request-id": "2825c2576f680857defe6726a1b14794", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dbc10eab-6605-4064-994a-a2b261de1085", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "90b14f6e-f54a-401f-871c-a0afc94b4b38", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011346?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011346?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429801f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "97992f294f404a98e846ee8ef5ed7866", + "x-ms-client-request-id": "f056a22166ec053f7b73503c63f627e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fa99df0c-d02d-4391-9a31-2e2381bba9c3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b9b44f3f-24ef-405a-a03d-6a2190def341", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011347?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011347?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298020-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "26b6060464fac363fee1fac35a256be1", + "x-ms-client-request-id": "fc4fd528e34ff5aa6047afb0862efb6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "09ca0cf4-34b4-4d95-a465-0d68732eff8e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b165e035-8c7b-4eed-88f6-6bdd8db6b521", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011348?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011348?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298021-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4a7a00ee5d6d0e6303cb27378f213cc3", + "x-ms-client-request-id": "f65e961d1fccf1d08220adf51e1ba4e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:44:59 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9adbcefc-a49c-4936-ad7a-1a0d3491940d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5d3efe48-ed96-45c5-989f-7bcf5cd16a7a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/165886011349?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f165886011349?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298022-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1866efb2d521c5f5ccd5995e55d4f0c3", + "x-ms-client-request-id": "cbfd87d64a613e45f7608fa5b78e7f4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:00 GMT", + "Date": "Tue, 06 Aug 2019 17:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "93fc179b-16c3-4f68-b2bd-e3ba9b3e8331", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bd0d23b7-bf3a-4218-92dc-2ff27c30c097", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1385519988" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretsAsync.json index 99939dc01c88..2c5cfdf456cf 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetDeletedSecretsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364970?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298208-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "809ae49cc11c59bba78124ead02dd622", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "505fed16-e15b-4c0b-ae1e-14eef57e3534", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298208-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "809ae49cc11c59bba78124ead02dd622", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d2546780-395c-412b-aa41-f4c59ea871e8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0d18b86b-de78-49de-b60e-287a39d4a885", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364970/cfd16c6974b0420f9f4fb64d61b52fda", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970\u002f66cbb17246464e9693ff5e11cf5526bf", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364970?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298209-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "60e92d43842431213ff3d124a06ee019", "x-ms-return-client-request-id": "true" @@ -66,44 +109,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1a7a04ba-b052-49b6-beff-17ceeaed94fe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61194409-83ae-4767-b0d7-f59ea0008b23", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364970", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364970/cfd16c6974b0420f9f4fb64d61b52fda", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364970", + "deletedDate": 1565114408, + "scheduledPurgeDate": 1572890408, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970\u002f66cbb17246464e9693ff5e11cf5526bf", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364971?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364971?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d586ee6a7bac27b74425a06a96d736ff", "x-ms-return-client-request-id": "true" @@ -115,41 +159,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8d0ed0ce-fba3-46b9-9dcf-f48fcdfb7908", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "752f9669-1442-4a86-91da-4bd5221fbb1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364971/0ee8295971b1461f898a236e8ff58cf9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364971\u002f457b4bee383940c0b18bf8b2d1ff9fe5", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364971?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364971?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "77fbbc8e94a418ecc2684028ef96b839", "x-ms-return-client-request-id": "true" @@ -159,44 +204,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "34195383-6069-4443-a1d0-6a9c5b763d56", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1e332004-129f-444e-bcd2-114b096edf55", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364971", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364971/0ee8295971b1461f898a236e8ff58cf9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364971", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364971\u002f457b4bee383940c0b18bf8b2d1ff9fe5", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364972?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364972?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e17f0ba000a6c77576c21bffe4b79b68", "x-ms-return-client-request-id": "true" @@ -208,41 +254,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "91a4aeba-d4bc-4912-bc45-44aaadd51b91", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "59de9cd1-3a88-4a7e-9c85-6baca67394c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364972/527c52cdce30492a832fe35954a91cd5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364972\u002fe18c179e37254b0ea8a67ef578897102", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364972?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364972?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e495d1bd6972d674016e13433a8e37ae", "x-ms-return-client-request-id": "true" @@ -252,44 +299,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fed82298-be4a-42f8-b1a1-a06afcb78456", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e981bd81-3e5a-4ad7-aac3-4216674664eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364972", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364972/527c52cdce30492a832fe35954a91cd5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364972", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364972\u002fe18c179e37254b0ea8a67ef578897102", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364973?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364973?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8bca666d54578e58463401e278ed330b", "x-ms-return-client-request-id": "true" @@ -301,41 +349,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "019b3f35-41d6-419f-a012-269f2469687d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6d83896d-6797-43bb-9146-69db57ed1cd9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364973/adaacc2985274552b9031a341fb58978", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364973\u002fe8a31ed2512648fa834d874bf0a12310", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364973?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364973?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429820f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1d6bd8cdd30037c696a9df37ed318ce7", "x-ms-return-client-request-id": "true" @@ -345,44 +394,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c13c0785-f56a-4a4e-83db-33613f963487", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "facbddf6-ce67-4a92-ba89-572ad3bd9a47", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364973", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364973/adaacc2985274552b9031a341fb58978", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364973", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364973\u002fe8a31ed2512648fa834d874bf0a12310", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364974?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364974?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298210-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7d926d8a0fec681078079d3d68915d14", "x-ms-return-client-request-id": "true" @@ -394,41 +444,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "230fe65f-30db-4815-ad9f-a0b227f48ce3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8a1c770b-10ca-40c6-9544-f68c2165be06", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364974/22b5cb95199a46269d765295db69759f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364974\u002fac06d9f87cbf4a828c256ddc32055e38", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364974?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364974?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298211-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6276073a192399ada093f4ae7421a014", "x-ms-return-client-request-id": "true" @@ -438,44 +489,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9df913f7-82ac-42af-88c6-4026c1a42c9b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8f09d849-0264-4b9f-9461-bad3fa5286d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364974", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364974/22b5cb95199a46269d765295db69759f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364974", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364974\u002fac06d9f87cbf4a828c256ddc32055e38", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364975?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364975?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298212-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0a5719a8b65abd1ec702a5f93589ce05", "x-ms-return-client-request-id": "true" @@ -487,41 +539,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:20 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "edd94555-c221-44e5-99e4-269639a6a5c7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "493be411-ec56-4d6f-b83c-56fc48b4cb32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364975/1026853843c943f0bbeb32b55a2cc7f5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364975\u002fddec30af28c24b129555ba9b213f5c67", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364975?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364975?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298213-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e5fdcb4b29bb71c3c0f9dd591b62f357", "x-ms-return-client-request-id": "true" @@ -531,44 +584,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9bd46bf4-9ca4-45e1-85b2-7f0a98139583", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dbce45fa-0419-43bf-8033-34f21bdc2e15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364975", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364975/1026853843c943f0bbeb32b55a2cc7f5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364975", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364975\u002fddec30af28c24b129555ba9b213f5c67", "attributes": { "enabled": true, - "created": 1560804501, - "updated": 1560804501, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364976?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364976?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298214-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4e958866523984b9e9b89b2174b46317", "x-ms-return-client-request-id": "true" @@ -580,41 +634,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cb88a48b-9a9d-4e99-a099-0353a7cae58a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e06ba5f2-ff99-402a-af73-cb04fb412978", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364976/e3655a5c19c44f16af6d7f627caf823f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364976\u002f9d0bad3a26dd4701bdea4b19a3b83ba5", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364976?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364976?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298215-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a962efc4ba237e5956e64a61d9c4a265", "x-ms-return-client-request-id": "true" @@ -624,44 +679,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bf36d4c7-6460-4d94-851d-1547acc7a407", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "780fd477-72a1-4b3c-9ffb-2821b6f0dd31", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364976", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364976/e3655a5c19c44f16af6d7f627caf823f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364976", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364976\u002f9d0bad3a26dd4701bdea4b19a3b83ba5", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364977?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364977?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298216-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ad924d0e80f3f9cb1178fc028ea2fc0c", "x-ms-return-client-request-id": "true" @@ -673,41 +729,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "702b6559-0b94-45e6-89e4-1121378633b4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6e4e94c2-90b0-407a-8db8-5d7bb1cbe788", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364977/3defbc0784554ba58df722e8ecea77b0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364977\u002fcdb82a0b6d20439786dc331e97fc6fdd", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364977?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364977?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298217-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2c95c6964affab332f17f8530758aa24", "x-ms-return-client-request-id": "true" @@ -717,44 +774,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4c504f64-41e2-4e0f-bf91-be358a680120", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "03241d7b-f53b-4d6d-8145-e68dfb7cc191", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364977", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364977/3defbc0784554ba58df722e8ecea77b0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364977", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364977\u002fcdb82a0b6d20439786dc331e97fc6fdd", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364978?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364978?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298218-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "27123516b6214323236997aabe56efb4", "x-ms-return-client-request-id": "true" @@ -766,41 +824,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "96fdd701-f317-47e1-b3c2-ef548ad16dd3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d68a6572-0437-427c-a98e-1871708dc75e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364978/4181a8933cd64dc08ba4d9b53292020a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364978\u002fd4e74e37680f4517a308d9fcca9c5d74", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364978?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364978?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298219-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "13ca3eea762fc46519e67ddc8878f1b8", "x-ms-return-client-request-id": "true" @@ -810,44 +869,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "07da8bdb-a942-4649-93a9-cfb98a2adb6f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e8bab9e1-0d90-4846-aed9-2dc507a23021", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364978", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364978/4181a8933cd64dc08ba4d9b53292020a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364978", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364978\u002fd4e74e37680f4517a308d9fcca9c5d74", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364979?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364979?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "59ecd8ced58fe0eaa2510895b288edd8", "x-ms-return-client-request-id": "true" @@ -859,41 +919,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d43e7ac9-43a6-4772-964e-8a3cf9ee02b5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8610641c-a2e6-4151-bec2-09a232a7a43d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364979/06fa3f75d59341d69bf3971a3f4289f6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364979\u002fe76bfc8ec4a141438c3f27da5317f9b1", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19164364979?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364979?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c9684427978ea0f5cf4e0d3a3846bbab", "x-ms-return-client-request-id": "true" @@ -903,44 +964,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7b75759-3e9e-4bfd-811a-167ea261f073", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9f314d79-cafc-4eaf-a602-984af3589a2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364979", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364979/06fa3f75d59341d69bf3971a3f4289f6", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364979", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364979\u002fe76bfc8ec4a141438c3f27da5317f9b1", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649710?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649710?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e5dcdf78966a142454ea70dd6dd01190", "x-ms-return-client-request-id": "true" @@ -952,41 +1014,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "88e5e08b-1b50-48d8-89d6-05ca6e22ba65", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "712a8a19-c761-434b-bf14-2a0326493394", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649710/dbd0d6303239407dae95f2c354d20039", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649710\u002fe695099022a1400ab2d78146ede5ccfb", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649710?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649710?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "44b5a5f9280f372ae34c8941c7afa75b", "x-ms-return-client-request-id": "true" @@ -996,44 +1059,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:21 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3ddc2136-89ca-432b-a079-e2d1feae84e8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6fe95ce7-03f5-4890-a242-6d00ac023e27", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649710", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649710/dbd0d6303239407dae95f2c354d20039", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649710", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649710\u002fe695099022a1400ab2d78146ede5ccfb", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649711?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649711?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d31d5d9507ac916e1f5474a3261732ff", "x-ms-return-client-request-id": "true" @@ -1045,41 +1109,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79b184e5-afa1-4f67-a566-f3861ae7b524", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aa65aa45-6a76-46fe-a33f-487ce742e220", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649711/78db4a6709534ab48e604a6074ba0d6d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649711\u002f840d3328aa0340419cc225bdc7c78e7e", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649711?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649711?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429821f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "93417d3c7791509bb4a5021e0de34da4", "x-ms-return-client-request-id": "true" @@ -1089,44 +1154,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ff4152d7-4f4b-47fe-bf72-4ea3ebca52bd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b384912d-1829-4d8c-b03b-6763bd083758", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649711", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649711/78db4a6709534ab48e604a6074ba0d6d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649711", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649711\u002f840d3328aa0340419cc225bdc7c78e7e", "attributes": { "enabled": true, - "created": 1560804502, - "updated": 1560804502, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649712?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649712?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298220-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "104815433eb2f1e4372324bbb38711cb", "x-ms-return-client-request-id": "true" @@ -1138,41 +1204,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79f08d3c-fb01-4ddc-ba08-f9aa725710ed", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "76bd4270-f39d-4266-a766-8f4c21cc626a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649712/dcd573ece1e9410fbcdaddf0476a53ef", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649712\u002fbbe2d1e7108844809faf28c13dc2207c", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649712?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649712?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298221-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4a048919146e1ec9c1cd1f060550833c", "x-ms-return-client-request-id": "true" @@ -1182,44 +1249,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3644da61-2523-420d-8b40-be8dec4a7ce0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e09c8c55-65f0-48a9-bde4-286bf1a36c86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649712", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649712/dcd573ece1e9410fbcdaddf0476a53ef", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649712", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649712\u002fbbe2d1e7108844809faf28c13dc2207c", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649713?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649713?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298222-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1060d00621cffe4d994f5c6d53e09d2d", "x-ms-return-client-request-id": "true" @@ -1231,41 +1299,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "614bb9ae-b6f2-4f27-a00b-b83fbaa8b46a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7773b96c-8311-4f64-8b50-5fbdd61a29ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649713/0ec5013cc1ab44649e24c041ef2f41e1", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649713\u002ff3017e29f46e4c50a0793f0b18bd1ba2", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649713?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649713?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298223-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8304369403de2e354b2a4ee51eddebe6", "x-ms-return-client-request-id": "true" @@ -1275,44 +1344,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "717883b1-f21a-43e3-967a-0ad02d5907d3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "23b9bfe5-56d3-44df-b098-1f886fbb26be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649713", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649713/0ec5013cc1ab44649e24c041ef2f41e1", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649713", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649713\u002ff3017e29f46e4c50a0793f0b18bd1ba2", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649714?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649714?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298224-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e2b4e7a00026f8fc3b06b01eb85bcae1", "x-ms-return-client-request-id": "true" @@ -1324,41 +1394,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7e200ba3-861c-41e7-afb5-5d2a0ee9f64f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "23225030-1f13-4e33-9844-512c30c35e17", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649714/32169302991f4f92b5d68281a7f1e958", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649714\u002f5b370c68bbdb434bb88469f3da54ff5c", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649714?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649714?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298225-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cf72f230ff4b035e9b31c5a5d268dfbb", "x-ms-return-client-request-id": "true" @@ -1368,44 +1439,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "606b0e61-3e1d-40a1-951d-2e5602108584", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1a6588de-fbaf-44c7-98fb-4d0dc68d324a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649714", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649714/32169302991f4f92b5d68281a7f1e958", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649714", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649714\u002f5b370c68bbdb434bb88469f3da54ff5c", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649715?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649715?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298226-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6bcd7564ba2b9406390c48d7521676ef", "x-ms-return-client-request-id": "true" @@ -1417,41 +1489,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c5c535e-ef93-41a9-92df-0bf63fd07327", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ac194e54-9703-4298-a988-78aa8edf2631", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649715/3af6cba3dabd48009380a67278ffe024", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649715\u002f5a9d0825cbcf466a891f751726d47b83", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649715?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649715?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298227-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2cb56d5f1c6aa09b89b047f53a5725d3", "x-ms-return-client-request-id": "true" @@ -1461,44 +1534,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fec5b564-5728-401e-bb68-c89b261a88ad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1b39b0a9-384f-4075-af66-72244bfd55c4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649715", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649715/3af6cba3dabd48009380a67278ffe024", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649715", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649715\u002f5a9d0825cbcf466a891f751726d47b83", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649716?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649716?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298228-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "43baf4265f8e75b5ebde953fb786b184", "x-ms-return-client-request-id": "true" @@ -1510,41 +1584,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b5b7c0ff-f052-4a5f-9deb-b7282fe24c19", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4644152c-5c90-4185-b54f-a2dfda95cd41", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649716/f0364c4d4af243e2a84c1f0bb024bbca", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649716\u002f1e7fedf678d44adca8681877abec071a", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649716?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649716?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298229-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6546d6bbb2b34751da2de27b721159e2", "x-ms-return-client-request-id": "true" @@ -1554,44 +1629,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9fcef9a5-3be7-4f86-a1e1-11af34a4aee1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "96a04a95-3a2a-4be4-bbe9-0adf5acf49ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649716", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649716/f0364c4d4af243e2a84c1f0bb024bbca", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649716", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649716\u002f1e7fedf678d44adca8681877abec071a", "attributes": { "enabled": true, - "created": 1560804503, - "updated": 1560804503, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649717?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649717?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5db174e6325cff61b73f408c875be802", "x-ms-return-client-request-id": "true" @@ -1603,41 +1679,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "03252ed5-f821-4b28-8c2d-16d04fcf5f5e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3108a70c-83da-462b-b2f4-69baf7315cf9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649717/717a95316256422c8bb4c6a99eea7474", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649717\u002f6322a674c4ce4e54abdf35b0fff1fcf0", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649717?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649717?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6439c3febf117320a37369617d3a02da", "x-ms-return-client-request-id": "true" @@ -1647,44 +1724,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1c314a19-4ab0-4418-9d73-ddc01ebd0cd8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bdad2ddf-19db-48da-b7f8-8e7e0e6004c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649717", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649717/717a95316256422c8bb4c6a99eea7474", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649717", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649717\u002f6322a674c4ce4e54abdf35b0fff1fcf0", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649718?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649718?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4359b28454d588277446ad7372c5bf7e", "x-ms-return-client-request-id": "true" @@ -1696,41 +1774,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b926b8e1-3f35-4d5a-9ff9-32c84f5e53a9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "47aa643e-59e2-4fa3-824b-a46228a6f8cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649718/702dfe1aee2b4522b2348e3ab1f069af", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649718\u002f03386495af6c48dfb27a1760005ce42e", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649718?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649718?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "af7cdf44f5d726d1533db9e9c900827d", "x-ms-return-client-request-id": "true" @@ -1740,44 +1819,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e9d1b2b0-f142-432b-b44e-75550c8d1580", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "16d9be43-76ae-4668-8a18-66a0df3dac82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649718", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649718/702dfe1aee2b4522b2348e3ab1f069af", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649718", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649718\u002f03386495af6c48dfb27a1760005ce42e", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649719?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649719?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d507653ca502aa2d9bb0efca12ac01de", "x-ms-return-client-request-id": "true" @@ -1789,41 +1869,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "de43c86a-244b-4653-b2e9-96077c47d238", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8415a1a2-39ac-408b-be96-c86c7fa0e09f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649719/65a367138af541c0bf916c03eb486042", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649719\u002f1b037c301c5b4d798ce11c2b28341375", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649719?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649719?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429822f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9e1ceab353be8f03e032ef979b3ebf74", "x-ms-return-client-request-id": "true" @@ -1833,44 +1914,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "81eab0a8-7640-4439-a8b1-8a0b3054c18f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "87c98300-53ee-4a21-8496-fea9b11218c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649719", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649719/65a367138af541c0bf916c03eb486042", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649719", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649719\u002f1b037c301c5b4d798ce11c2b28341375", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649720?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649720?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298230-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0c3730c4eabe9f7cb1d21427050614a6", "x-ms-return-client-request-id": "true" @@ -1882,41 +1964,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "04e11df4-9abc-4388-9f19-b1ed10c948e6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "581aed88-7fb6-4502-8690-4de4a1f19c5c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649720/6e98ec8282b7407dbec2ce5cd67417a8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649720\u002f9d74588e0aeb4e8b8645d1c3a33fdc96", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649720?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649720?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298231-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "df35db3ce4e3e9be6277f4cfb5960f5c", "x-ms-return-client-request-id": "true" @@ -1926,44 +2009,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7af9d626-cbdc-4a5b-a672-59a2c4e5019a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c91bcfd0-d674-41a9-b1af-7f7980f3924d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649720", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649720/6e98ec8282b7407dbec2ce5cd67417a8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649720", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649720\u002f9d74588e0aeb4e8b8645d1c3a33fdc96", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649721?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649721?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298232-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e1067af1f575c81f6e7decec3fdb8ad9", "x-ms-return-client-request-id": "true" @@ -1975,41 +2059,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c97eaf6-2e84-4ad4-ad7a-e17e97639a43", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "79efd6b3-f78a-4462-a568-a4c5305836ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649721/748a94d333e94a3f85fcff47f7a0045b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649721\u002f848b0df595ca45efa7b63c84b50f2753", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649721?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649721?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298233-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bf5b491ddf09e091714ea946f6ace91b", "x-ms-return-client-request-id": "true" @@ -2019,44 +2104,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "086860cd-bed9-4e4f-8ed4-832345a77f1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b6736691-5546-4f04-9dd1-5f13b2e6a355", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649721", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649721/748a94d333e94a3f85fcff47f7a0045b", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649721", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649721\u002f848b0df595ca45efa7b63c84b50f2753", "attributes": { "enabled": true, - "created": 1560804504, - "updated": 1560804504, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649722?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649722?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298234-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8b36b7c332004731bb6c7165f7d2a986", "x-ms-return-client-request-id": "true" @@ -2068,41 +2154,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fc994c94-3090-4a2e-bd85-0c682ac137fc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dae88890-1571-4b55-838f-af8e41055621", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649722/e5f26f7164114836bdd630ad65ec509c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649722\u002fe322922da64f46868041e599fbdc7615", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649722?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649722?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298235-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6cb11aed4f3b1153e82670264bd8d2c1", "x-ms-return-client-request-id": "true" @@ -2112,44 +2199,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9727e9fc-c5b2-41a2-9af6-e4079417d1a9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3b5550c1-d125-434a-a1d3-f8b5e3aef802", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649722", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649722/e5f26f7164114836bdd630ad65ec509c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649722", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649722\u002fe322922da64f46868041e599fbdc7615", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649723?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649723?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298236-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8729d193fea5ebd91713049c6e2be89e", "x-ms-return-client-request-id": "true" @@ -2161,41 +2249,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "977f9a33-5e70-49d5-a227-7a972ab8fbd6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d3c3376a-acee-4ca5-a326-3fe4d2d15bfe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649723/dea7887157be447dbfe226ba1ff67107", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649723\u002fba140da7013f4d14b9425678a872e232", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649723?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649723?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298237-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "db5922a47dfa73e06424a2d9c20afbe2", "x-ms-return-client-request-id": "true" @@ -2205,44 +2294,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d57fbb6e-9962-41fa-8a4f-f163b958cccf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "867a70e7-2022-4469-b257-dcbbda8a1bee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649723", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649723/dea7887157be447dbfe226ba1ff67107", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649723", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649723\u002fba140da7013f4d14b9425678a872e232", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649724?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649724?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298238-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "26d1af9a22a9eee041c654274bb7a2bd", "x-ms-return-client-request-id": "true" @@ -2254,41 +2344,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6c49e02f-04c2-4312-8117-f2c93766983a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "af58b711-b878-40e8-a0c6-83ffe0f30a1a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649724/10805b0548f7494cb2fbce5292ce2300", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649724\u002f812e2663ad5d4fef94544c6d6cebc249", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649724?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649724?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298239-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2882d13ef67f16c7f0b523815cff280d", "x-ms-return-client-request-id": "true" @@ -2298,44 +2389,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d5d0811a-8b16-483a-b7e1-769b4605af91", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61f5bc74-1903-45cb-9149-0654e903a1d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649724", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649724/10805b0548f7494cb2fbce5292ce2300", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649724", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649724\u002f812e2663ad5d4fef94544c6d6cebc249", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649725?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649725?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bf012118c15a82f5416b9a3329b827ad", "x-ms-return-client-request-id": "true" @@ -2347,41 +2439,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "14cbd505-90a2-4da0-8e61-ebeaee0e27cf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "140b30ee-7c59-4127-8551-2536c4a62804", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649725/33383101044e4e10a16c9382ba49ea8c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649725\u002f1cedc33436654382b87a301553fd28d1", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649725?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649725?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f19be581d388a363e8bb35f4ff5f9141", "x-ms-return-client-request-id": "true" @@ -2391,44 +2484,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e922c83e-3347-45ea-844f-b1402aed222d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0ff655fe-f651-4e20-9252-ff9d68fb24f2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649725", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649725/33383101044e4e10a16c9382ba49ea8c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649725", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649725\u002f1cedc33436654382b87a301553fd28d1", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649726?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649726?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2a0f469de3b57c63db00e6135c93ed37", "x-ms-return-client-request-id": "true" @@ -2440,41 +2534,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c25d2ef5-bd25-48ca-914c-b2cbcfdbd8cf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3c4c51c3-620a-4ce1-bdef-422101c61c93", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649726/0d9245d1198b4e6f8e1334f8237773f2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649726\u002fac0df2560fec413db038e237afac9274", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649726?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649726?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "77ff768d37634485be5ed69e8c0183e2", "x-ms-return-client-request-id": "true" @@ -2484,44 +2579,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bf88aa50-63a5-49bb-9b09-18deb0055fe5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e14089f7-1d2a-4945-9276-6c8075dff13b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649726", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649726/0d9245d1198b4e6f8e1334f8237773f2", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649726", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649726\u002fac0df2560fec413db038e237afac9274", "attributes": { "enabled": true, - "created": 1560804505, - "updated": 1560804505, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649727?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649727?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e29558d9fda99ef7811f1587ec4f4655", "x-ms-return-client-request-id": "true" @@ -2533,41 +2629,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "154e835a-c75b-4d5e-9746-5d965239098f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bf411d69-e8d9-4067-b102-fab77e45bc1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649727/addca67c39a04134bd2b055650387c0d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649727\u002f7dbebe8115074585a045ecf69551449a", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649727?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649727?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429823f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8866fdcd1a6066dec1ca6b560dc4efda", "x-ms-return-client-request-id": "true" @@ -2577,44 +2674,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3419de81-f2a5-4646-bf1f-1de19087d3c4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39a9f0a9-0006-49f3-868f-65e971e8ab7c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649727", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649727/addca67c39a04134bd2b055650387c0d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649727", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649727\u002f7dbebe8115074585a045ecf69551449a", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649728?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649728?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298240-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "033a047d0afd8f8e7e61f54321fd576e", "x-ms-return-client-request-id": "true" @@ -2626,41 +2724,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "63fb66c0-c895-4e81-a71c-e3076e9c5eac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dd63c704-eeb0-444f-8eb2-fd9cf4afb837", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649728/32327fa9868d424997ece19d7ce5270a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649728\u002fc6e2801898e54e919bb1aadff16cbc88", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649728?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649728?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298241-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8ed08117fa9abe827a2f20df92a091bd", "x-ms-return-client-request-id": "true" @@ -2670,44 +2769,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "68f38d94-88ad-4248-9bc8-7a276f7eee79", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61ea67ed-a838-4ff2-bb7b-606580b9be1a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649728", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649728/32327fa9868d424997ece19d7ce5270a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649728", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649728\u002fc6e2801898e54e919bb1aadff16cbc88", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649729?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649729?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298242-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e80a3a2f4314c2576fd60aff249a45c4", "x-ms-return-client-request-id": "true" @@ -2719,41 +2819,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df3b3b51-676e-4493-be7e-6dd8b97f1938", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "084ba381-e0fc-4d56-81e2-39fe5403181d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649729/ee84bb3c9ece41cba79a409d8c57f83a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649729\u002fdab818d383784e90b69ed93a8a1de2bc", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649729?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649729?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298243-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8b3ffd7260f3823f817b89cee9affdde", "x-ms-return-client-request-id": "true" @@ -2763,44 +2864,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "813d9dc3-cdfe-46f0-9c34-1231e5597f1b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d348ddbd-1116-4e1b-ab67-701bf94f2b3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649729", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649729/ee84bb3c9ece41cba79a409d8c57f83a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649729", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649729\u002fdab818d383784e90b69ed93a8a1de2bc", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649730?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649730?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298244-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e61437d06ff2d45a290d1fc4f08399e0", "x-ms-return-client-request-id": "true" @@ -2812,41 +2914,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5b8e6739-2d3a-41e3-9517-5751ad7efc72", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bff8b624-7b97-4d7c-b9bf-eb65756d3d76", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649730/67342cd7c13d4d2a908b11f13141bd83", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649730\u002f7c67be5a485e4f24a58a836701df766b", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649730?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649730?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298245-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "956c5cea0561cecafb886698ba89d9c0", "x-ms-return-client-request-id": "true" @@ -2856,44 +2959,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a1e18034-11c7-41c8-b1d7-fa9f02d8ca68", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f77b76a7-1451-435f-be6b-157fba967bc9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649730", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649730/67342cd7c13d4d2a908b11f13141bd83", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649730", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649730\u002f7c67be5a485e4f24a58a836701df766b", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649731?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649731?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298246-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ed2f2cd85e8603d1a26b62e5417b92fe", "x-ms-return-client-request-id": "true" @@ -2905,41 +3009,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6f2d021-18f3-4e8a-a18f-b1bfdb90acd5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d7f58b6e-bde3-41ee-a39b-d3a0d1086b74", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649731/733375df49a945c99ed02f56da82ceb1", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649731\u002f6a4c478937fd44c6b2cf6235cf895262", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649731?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649731?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298247-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8de4a8e16842ca7c6d45eb6a08c1199f", "x-ms-return-client-request-id": "true" @@ -2949,44 +3054,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9e79d7d8-9397-4a66-93d0-c5f33378fa70", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7adbbcc4-9a35-465c-a4ee-e89f0ddeab78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649731", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649731/733375df49a945c99ed02f56da82ceb1", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649731", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649731\u002f6a4c478937fd44c6b2cf6235cf895262", "attributes": { "enabled": true, - "created": 1560804506, - "updated": 1560804506, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649732?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649732?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298248-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c4eb5f34ac548b5a8b68f2f5a3e48d7f", "x-ms-return-client-request-id": "true" @@ -2998,41 +3104,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ec275570-3a9d-400d-83a3-dd65a90421f3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "462df18e-32b5-46f2-871d-80c20976444e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649732/945f90f2ce1f4340a93ac1f0627712da", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649732\u002f9193c55b51754cde8fe9ee4773fd203b", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649732?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649732?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298249-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "11b767f54ba5707daf647f417267fbe1", "x-ms-return-client-request-id": "true" @@ -3042,44 +3149,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a9fed27c-68b7-417e-b876-dde99c1ef8e4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "18e484f4-8664-4d4f-8b01-c6f457926478", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649732", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649732/945f90f2ce1f4340a93ac1f0627712da", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649732", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649732\u002f9193c55b51754cde8fe9ee4773fd203b", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649733?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649733?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e2b0c251ce9035aa4e5801d976872789", "x-ms-return-client-request-id": "true" @@ -3091,41 +3199,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6dd0b1df-0759-40c8-b0e5-1652f51df27f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c737e45b-6908-480f-9eee-050110dc1677", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649733/e5be4bc9f6e5454baa91f8b0f55d49a0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649733\u002fbdab89551e824d5686928d4eff6e5c82", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649733?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649733?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a0746cb70809e9fae17a15ef2d191923", "x-ms-return-client-request-id": "true" @@ -3135,44 +3244,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "723cd31b-1dca-446d-b456-db88ebe20716", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8b8bf474-4b4a-43a8-bf72-51d90a2a660f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649733", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649733/e5be4bc9f6e5454baa91f8b0f55d49a0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649733", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649733\u002fbdab89551e824d5686928d4eff6e5c82", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649734?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649734?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e0a4106dab3327efbc82c34d49a3f928", "x-ms-return-client-request-id": "true" @@ -3184,41 +3294,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c48ed596-a283-4ab6-9881-aab978e2245c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "041b3213-bc45-42f0-bc23-b5461fe1f956", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649734/589b24d645bc4b578311bbbdee7b92fc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649734\u002f621ca55f9b9b49b8865804c3fa514b00", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649734?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649734?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0689f53c5af349d7c7c70015b9bb0735", "x-ms-return-client-request-id": "true" @@ -3228,44 +3339,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38cf8454-7af9-4e1a-a7cf-f8195ef464bd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a603b4c3-b999-4695-a9a5-514e4b1541d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649734", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649734/589b24d645bc4b578311bbbdee7b92fc", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649734", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649734\u002f621ca55f9b9b49b8865804c3fa514b00", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649735?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649735?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "666cde3e46e20c557d4ce38744ad9f3d", "x-ms-return-client-request-id": "true" @@ -3277,41 +3389,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f7258718-4855-4354-ab69-4ccd0423ba80", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a34a21d1-0aba-4abe-abd1-07900248c85b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649735/8f0ae26be9804f06bd1e8e8ef0df3018", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649735\u002f7dcdc3d92e1c4caf856de1a43cc47e87", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649735?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649735?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429824f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "37b2ed81128f1230385a196cabd96e01", "x-ms-return-client-request-id": "true" @@ -3321,44 +3434,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1f540337-f310-4ea5-befc-c3616688d9a7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0c9e0821-40a8-42a0-b8fd-8345a733057c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649735", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649735/8f0ae26be9804f06bd1e8e8ef0df3018", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649735", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649735\u002f7dcdc3d92e1c4caf856de1a43cc47e87", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649736?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649736?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298250-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6b0e8e7a9337f645a07d89a6774f041a", "x-ms-return-client-request-id": "true" @@ -3370,41 +3484,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "da58bc05-65d8-495f-ad71-bde6b7ef9b73", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d3318d6-ca37-4ae3-ab2d-137c1d926969", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649736/9798ef11ac514dada6ef7b3024382f02", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649736\u002f75885e4a58074b0098dbfb008b267024", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649736?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649736?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298251-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cb94c228cf082ca5ad592d882de960a3", "x-ms-return-client-request-id": "true" @@ -3414,44 +3529,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6343154b-cd8f-4372-8219-bef496addf32", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d1f0cb27-463a-4ab0-915a-4fd08da0addc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649736", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649736/9798ef11ac514dada6ef7b3024382f02", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649736", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649736\u002f75885e4a58074b0098dbfb008b267024", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649737?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649737?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298252-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b60de1de339eed06a8bc9712898a9be8", "x-ms-return-client-request-id": "true" @@ -3463,41 +3579,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "44f2dc7c-59c7-4882-9f57-54fc09487a62", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "50a09f71-8e86-44ff-a72b-1e0b8c3bbb88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649737/962f3d591cf94af9b4f1fe6bd8b915ce", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649737\u002f7d3c30ee7989436788aa519f3d934541", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649737?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649737?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298253-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e843fe56a245aaf9e8e2bedd65bcc8b7", "x-ms-return-client-request-id": "true" @@ -3507,44 +3624,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6fbae7b-a6e9-433d-ad6c-a8b680268a97", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c3ef15ef-9456-489a-9e53-2766ad758078", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649737", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649737/962f3d591cf94af9b4f1fe6bd8b915ce", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649737", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649737\u002f7d3c30ee7989436788aa519f3d934541", "attributes": { "enabled": true, - "created": 1560804507, - "updated": 1560804507, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649738?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649738?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298254-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "95c8e51c4e42f57bbca6234b3893a223", "x-ms-return-client-request-id": "true" @@ -3556,41 +3674,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "880a1dac-1f57-43d3-82b1-fa3a06209f50", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d02c69d-e607-4a54-8fb5-1a012b379823", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649738/b720d5f949b94348a0a825f98e35c783", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649738\u002fffc330f0be524b50ae5208b8c9c8b74b", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649738?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649738?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298255-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2e3245be78a53b5ee862cdbc742887eb", "x-ms-return-client-request-id": "true" @@ -3600,44 +3719,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6584d604-c16d-4d7e-8890-3257702fef8a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "53b6a7f6-ddb3-40de-b461-44ae3826d276", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649738", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649738/b720d5f949b94348a0a825f98e35c783", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649738", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649738\u002fffc330f0be524b50ae5208b8c9c8b74b", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649739?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649739?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298256-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a3f5dff305c207a5824e2b9e7ead7154", "x-ms-return-client-request-id": "true" @@ -3649,41 +3769,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d0320b82-999a-4109-ac5f-da9b92559ba6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ea57cd58-61f7-4f76-b1b0-af3286f910cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649739/84bb3bb470c641fb95a214200f42b87d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649739\u002f8136dc1409484658ad96d74aaf8616c6", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649739?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649739?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298257-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "201f9b3f9a8aa412878daddf80bf8094", "x-ms-return-client-request-id": "true" @@ -3693,44 +3814,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d97ef11b-0b39-418c-86b7-a515c5273cee", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "67d159fa-46ab-4320-b5d8-dcaff62f772a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649739", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649739/84bb3bb470c641fb95a214200f42b87d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649739", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649739\u002f8136dc1409484658ad96d74aaf8616c6", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649740?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649740?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298258-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5958381ffe9eb9619f2aab574dc0bc3a", "x-ms-return-client-request-id": "true" @@ -3742,41 +3864,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "40849283-4f9d-4411-81d6-4143efb23c59", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3f57f3f7-4b55-43b4-92ff-057faac59ab7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649740/bbaf8ab91b8143eeae5430d08e0f643e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649740\u002fbc3469a1b3144fdda9eb137af2ac2f2a", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649740?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649740?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298259-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d97c78f167085960cd511c3558c587c3", "x-ms-return-client-request-id": "true" @@ -3786,44 +3909,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b1fee26-f4b7-4799-8a8c-ceb289186bb9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e840184e-9186-4fc9-ad62-7cb80791df83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649740", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649740/bbaf8ab91b8143eeae5430d08e0f643e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649740", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649740\u002fbc3469a1b3144fdda9eb137af2ac2f2a", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649741?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "467e96cd185541b63a668060eeba56c6", "x-ms-return-client-request-id": "true" @@ -3835,41 +3959,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0fd72784-614f-4385-b462-6e881e37523a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e7a128d2-2f4c-4182-959f-718905ec9f1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649741/2277666447a24e519edbf994088850fe", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649741\u002f2d800dcaebb84c4da9502bfbe92fd280", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649741?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "07ee72d0a642b78bd8fe8b4ce12c60d9", "x-ms-return-client-request-id": "true" @@ -3879,44 +4004,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e96b629f-b66f-4f56-8889-9ef0f2ba4343", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0eb994dd-3eb6-4034-b255-01a32fb3a2d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649741", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649741/2277666447a24e519edbf994088850fe", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649741", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649741\u002f2d800dcaebb84c4da9502bfbe92fd280", "attributes": { "enabled": true, - "created": 1560804508, - "updated": 1560804508, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649742?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649742?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b689e8a27641d8e5c23b9fa2e7ff6b12", "x-ms-return-client-request-id": "true" @@ -3928,41 +4054,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "65553a6a-a4fa-4968-9e69-120bf5d986b0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13e79d5c-a04b-4568-ae80-1030564eaa44", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649742/0ef72b2e596142af82fef3e0b59b7343", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649742\u002f1babe67832664add9a373c5c7269c2b8", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649742?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649742?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e56456fa80d727810ac76d568c695f0d", "x-ms-return-client-request-id": "true" @@ -3972,44 +4099,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "154b2a42-4dc1-4e07-8237-d149abb0db39", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8ecf007c-8d70-41f3-ad73-ba6d6b580f3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649742", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649742/0ef72b2e596142af82fef3e0b59b7343", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649742", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649742\u002f1babe67832664add9a373c5c7269c2b8", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649743?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649743?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "05bda605a0315a858d15450606e9d0d8", "x-ms-return-client-request-id": "true" @@ -4021,41 +4149,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b0dc068b-05c9-4c19-bb72-df5eeade77f1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "71e2c0f0-07e3-4045-a9f1-66e9214975a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649743/e74990bf796e4f6bb13bdcae6efcec73", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649743\u002fe376efc122e445978225fdde41ce9fc1", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649743?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649743?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429825f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8b5279937bc722026661ab79088f4c58", "x-ms-return-client-request-id": "true" @@ -4065,44 +4194,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "20baef8d-a3de-4745-bf14-8fc9e73e4df7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f8a04846-d6ef-4dea-a392-869df7b657d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649743", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649743/e74990bf796e4f6bb13bdcae6efcec73", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649743", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649743\u002fe376efc122e445978225fdde41ce9fc1", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649744?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649744?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298260-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "409d91dc654259e0d00a57c13b7a2021", "x-ms-return-client-request-id": "true" @@ -4114,41 +4244,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "35d855e1-4666-48fe-909d-15c4c0f89d33", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c3989061-4d70-4fe2-8714-34788762f5f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649744/dbd043bedd7846edacfebca046cd651a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649744\u002fef5568001b844ed3a5c4079983e5a3b6", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649744?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649744?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298261-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "13c295f7d3178946a39b9fd0f50b51fe", "x-ms-return-client-request-id": "true" @@ -4158,44 +4289,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "09ea1a5b-d5cc-4c1b-8adc-e663b679e544", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fd09dd3f-c82e-47ae-86c8-b8697f8e0820", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649744", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649744/dbd043bedd7846edacfebca046cd651a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649744", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649744\u002fef5568001b844ed3a5c4079983e5a3b6", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649745?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649745?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298262-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "742aecc98f4c2e9698f8babd2341e6ec", "x-ms-return-client-request-id": "true" @@ -4207,41 +4339,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "20050550-6ce6-4e8e-9fd8-a9a368066098", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "217802d7-7223-4e46-aa8d-3567ca44d960", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649745/bca9533456b24d03b785236e0a149289", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649745\u002fc57c9c5a6bbb4126b19d5b0a3d88c8c4", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649745?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649745?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298263-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "73828a4039cc08414b139ca6c61064c5", "x-ms-return-client-request-id": "true" @@ -4251,44 +4384,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ce4e0abf-2bdf-4263-b593-ec4423e21641", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "96c279ef-2187-4027-b2f8-0816754cedc1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649745", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649745/bca9533456b24d03b785236e0a149289", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649745", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649745\u002fc57c9c5a6bbb4126b19d5b0a3d88c8c4", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649746?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649746?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298264-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4ef759b8ab5067d4ff947a1e18886562", "x-ms-return-client-request-id": "true" @@ -4300,41 +4434,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "19f9bbbd-cb86-463f-9de2-824afa6658c5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a77a5527-da6d-4a1c-bd9a-59720dbc3182", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649746/339ec155357f476c9a5a9918405bdd82", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649746\u002ffe21cb573bd44a47bac0f72b730d043d", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649746?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649746?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298265-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6b8fb2b4de888f31ab212939f3ef6887", "x-ms-return-client-request-id": "true" @@ -4344,44 +4479,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f5938d8b-e410-4e4b-9395-7292e055d9f0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "77ee5dd8-70bc-4ca2-a8be-822e9ef32fb9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649746", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649746/339ec155357f476c9a5a9918405bdd82", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649746", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649746\u002ffe21cb573bd44a47bac0f72b730d043d", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649747?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649747?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298266-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ca04f5939849949bb51b7438bf22efc2", "x-ms-return-client-request-id": "true" @@ -4393,41 +4529,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "94139c8d-9a96-4d58-bb4e-0a26aee2197a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b6ccb344-0a6c-4582-beda-b5211f5aa5c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649747/2a5de28ed37a48f28bcf98a0e4d7f978", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649747\u002ff80f3db339a940e0ad0d8234e9ce81ad", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649747?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649747?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298267-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "13f239adf981da3d2868a32e829b740f", "x-ms-return-client-request-id": "true" @@ -4437,44 +4574,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:30 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb67bd5b-68cb-47e7-84b3-1965806a3e50", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3fbf3381-a629-40e8-96ee-e07bd1b0155a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649747", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649747/2a5de28ed37a48f28bcf98a0e4d7f978", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649747", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649747\u002ff80f3db339a940e0ad0d8234e9ce81ad", "attributes": { "enabled": true, - "created": 1560804509, - "updated": 1560804509, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649748?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649748?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298268-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "238af22c9b831c1917fab56d69f9d088", "x-ms-return-client-request-id": "true" @@ -4486,41 +4624,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:30 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c12ffe5-d829-451f-b415-024356672699", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bde50bcf-ae31-46f8-96c1-3a3acf63b8ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649748/b81192f0669a4f48b6e0caba07407676", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649748\u002f1841b64d1980427a9752d58200172d43", "attributes": { "enabled": true, - "created": 1560804510, - "updated": 1560804510, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649748?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649748?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298269-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b98b663154fd9a06b82aa2e1f46d1219", "x-ms-return-client-request-id": "true" @@ -4530,44 +4669,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:30 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc093923-3cf3-4a62-933b-8e3c6febfac8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "71bf0e2f-2fd6-4905-ac8e-fad48bc03458", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649748", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649748/b81192f0669a4f48b6e0caba07407676", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649748", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649748\u002f1841b64d1980427a9752d58200172d43", "attributes": { "enabled": true, - "created": 1560804510, - "updated": 1560804510, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649749?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649749?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429826a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cc0b64a6cb97123f20d5fb8743cf702e", "x-ms-return-client-request-id": "true" @@ -4579,41 +4719,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:30 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a896eec0-d510-4cd5-a732-8c6e1eaf8284", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8d8f8db6-7f95-4db8-a8b3-e70377a734ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649749/f31a111ec55846b6ad8e9fb54e87c240", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649749\u002f39542ca28c30461b92047853256ef578", "attributes": { "enabled": true, - "created": 1560804510, - "updated": 1560804510, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/191643649749?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649749?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429826b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1cfc1a97bb10d711ecf06b59f93827aa", "x-ms-return-client-request-id": "true" @@ -4623,15334 +4764,2586 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "354", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:30 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "46dd86c9-4d58-4089-954f-e10ac1dea818", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "28f9f888-a3de-4d7f-8a4f-3a3a2ecebcb3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649749", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649749/f31a111ec55846b6ad8e9fb54e87c240", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649749", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649749\u002f39542ca28c30461b92047853256ef578", "attributes": { "enabled": true, - "created": 1560804510, - "updated": 1560804510, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982a1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c1eab2fb0d25466d7960a846123d2b3e", + "x-ms-client-request-id": "382c8c80e1551eaccfd0e18afa98c4a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5139", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:52 GMT", + "Content-Length": "4518", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "788e508b-38a5-4717-b17c-a6a9ca392b4d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "69aa4a54-5247-4e19-ab40-e41a83c0805d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf421", - "deletedDate": 1559859911, - "scheduledPurgeDate": 1567635911, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf421", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364970", + "deletedDate": 1565114408, + "scheduledPurgeDate": 1572890408, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364970", "attributes": { "enabled": true, - "created": 1559859911, - "updated": 1559859911, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf422", - "deletedDate": 1559859911, - "scheduledPurgeDate": 1567635911, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf422", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364971", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364971", "attributes": { "enabled": true, - "created": 1559859911, - "updated": 1559859911, + "created": 1565114408, + "updated": 1565114408, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf423", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf423", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649710", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649710", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf424", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf424", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649711", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649711", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf425", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf425", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649712", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649712", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf426", - "deletedDate": 1559859912, - "scheduledPurgeDate": 1567635912, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf426", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649713", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649713", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf427", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf427", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649714", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649714", "attributes": { "enabled": true, - "created": 1559859912, - "updated": 1559859912, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf428", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf428", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649715", + "deletedDate": 1565114411, + "scheduledPurgeDate": 1572890411, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649715", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114411, + "updated": 1565114411, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf429", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf429", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649716", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649716", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf430", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf430", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649717", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649717", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf431", - "deletedDate": 1559859913, - "scheduledPurgeDate": 1567635913, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf431", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649718", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649718", "attributes": { "enabled": true, - "created": 1559859913, - "updated": 1559859913, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf432", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf432", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649719", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649719", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf433", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf433", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364972", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364972", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRNekwwUTVSVUUyT1VReU1qWkNNRFF4TWprNFJrRTJORVZFUkVSRU1rRTJRVGRDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNNaTlGTVRoRE1UYzVSVE0zTWpVMFFqQkZRVGhCTmpkRlJqVTNPRGc1TnpFd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRNekwwUTVSVUUyT1VReU1qWkNNRFF4TWprNFJrRTJORVZFUkVSRU1rRTJRVGRDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNNaTlGTVRoRE1UYzVSVE0zTWpVMFFqQkZRVGhCTmpkRlJqVTNPRGc1TnpFd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982a2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0757c2e4e5ce8fba66b65d60b791adc8", + "x-ms-client-request-id": "c1eab2fb0d25466d7960a846123d2b3e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:52 GMT", + "Content-Length": "4140", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "28ae4e0a-89ba-45e2-bcc8-04b903871ef4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e2ddef6d-27ae-4809-a011-9276bbe75dee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf434", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf434", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649720", + "deletedDate": 1565114412, + "scheduledPurgeDate": 1572890412, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649720", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf435", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf435", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649721", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649721", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114412, + "updated": 1565114412, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf436", - "deletedDate": 1559859914, - "scheduledPurgeDate": 1567635914, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf436", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649722", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649722", "attributes": { "enabled": true, - "created": 1559859914, - "updated": 1559859914, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf437", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf437", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649723", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649723", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf438", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf438", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649724", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649724", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf439", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf439", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649725", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649725", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf440", - "deletedDate": 1559859915, - "scheduledPurgeDate": 1567635915, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf440", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649726", + "deletedDate": 1565114413, + "scheduledPurgeDate": 1572890413, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649726", "attributes": { "enabled": true, - "created": 1559859915, - "updated": 1559859915, + "created": 1565114413, + "updated": 1565114413, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf441", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf441", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649727", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649727", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf442", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf442", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649728", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649728", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf443", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf443", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649729", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649729", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf444", - "deletedDate": 1559859916, - "scheduledPurgeDate": 1567635916, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf444", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364973", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364973", "attributes": { "enabled": true, - "created": 1559859916, - "updated": 1559859916, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf445", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf445", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649730", + "deletedDate": 1565114414, + "scheduledPurgeDate": 1572890414, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649730", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114414, + "updated": 1565114414, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM016RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM016RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982a3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cb08ec66d70f730d1ee5bef439660c92", + "x-ms-client-request-id": "0757c2e4e5ce8fba66b65d60b791adc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:53 GMT", + "Content-Length": "4522", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c466a4b2-c7b2-485a-b377-a359d0360161", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1b48a303-c5d1-4129-a9d9-e921b7478a84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf446", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf446", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649731", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649731", + "attributes": { + "enabled": true, + "created": 1565114414, + "updated": 1565114414, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649732", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649732", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf447", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf447", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649733", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649733", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf448", - "deletedDate": 1559859917, - "scheduledPurgeDate": 1567635917, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf448", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649734", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649734", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/0eb6fdc9930a43f7b9e86f6330236bf449", - "deletedDate": 1559859918, - "scheduledPurgeDate": 1567635918, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/0eb6fdc9930a43f7b9e86f6330236bf449", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649735", + "deletedDate": 1565114415, + "scheduledPurgeDate": 1572890415, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649735", "attributes": { "enabled": true, - "created": 1559859917, - "updated": 1559859917, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1003501949", - "deletedDate": 1560273769, - "scheduledPurgeDate": 1568049769, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1003501949", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649736", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649736", "attributes": { "enabled": true, - "created": 1560273769, - "updated": 1560273769, + "created": 1565114415, + "updated": 1565114415, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116540", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116540", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649737", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649737", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116541", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116541", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649738", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649738", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165410", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165410", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649739", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649739", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165411", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165411", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364974", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364974", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165412", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165412", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649740", + "deletedDate": 1565114416, + "scheduledPurgeDate": 1572890416, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649740", "attributes": { "enabled": true, - "created": 1560532001, - "updated": 1560532001, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165413", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165413", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649741", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649741", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114416, + "updated": 1565114416, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165414", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165414", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649742", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649742", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXhOQzh4TmpSR01EWkRNek0yTVRBME5UQXpPVUUwUlRBNE5UbEJORVUyUlRBM09DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNOREl2TVVKQlFrVTJOemd6TWpZMk5FRkVSRGxCTXpjelF6VkROekkyT1VNeVFqZ2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXhOQzh4TmpSR01EWkRNek0yTVRBME5UQXpPVUUwUlRBNE5UbEJORVUyUlRBM09DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNOREl2TVVKQlFrVTJOemd6TWpZMk5FRkVSRGxCTXpjelF6VkROekkyT1VNeVFqZ2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982a4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "37a6a3a4bc4015d9f85a5b6eaf0d8ee8", + "x-ms-client-request-id": "cb08ec66d70f730d1ee5bef439660c92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:53 GMT", + "Content-Length": "4132", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5b521d8d-55d0-43df-8b81-ace856abaa84", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0de35831-beaa-44b4-b2ef-4f048de448d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165415", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165415", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649743", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649743", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165416", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165416", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649744", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649744", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165417", - "deletedDate": 1560532002, - "scheduledPurgeDate": 1568308002, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165417", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649745", + "deletedDate": 1565114417, + "scheduledPurgeDate": 1572890417, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649745", "attributes": { "enabled": true, - "created": 1560532002, - "updated": 1560532002, + "created": 1565114417, + "updated": 1565114417, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165418", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165418", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649746", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649746", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165419", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165419", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649747", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649747", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116542", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116542", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649748", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649748", "attributes": { "enabled": true, - "created": 1560531999, - "updated": 1560531999, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165420", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165420", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649749", + "deletedDate": 1565114418, + "scheduledPurgeDate": 1572890418, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f191643649749", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114418, + "updated": 1565114418, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165421", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165421", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364975", + "deletedDate": 1565114409, + "scheduledPurgeDate": 1572890409, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364975", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165422", - "deletedDate": 1560532003, - "scheduledPurgeDate": 1568308003, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165422", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364976", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364976", "attributes": { "enabled": true, - "created": 1560532003, - "updated": 1560532003, + "created": 1565114409, + "updated": 1565114409, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165423", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165423", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364977", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364977", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165424", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165424", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364978", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364978", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165425", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165425", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364979", + "deletedDate": 1565114410, + "scheduledPurgeDate": 1572890410, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19164364979", "attributes": { "enabled": true, - "created": 1560532004, - "updated": 1560532004, + "created": 1565114410, + "updated": 1565114410, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eE9UUXdPVE00TkRZeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eE9UUXdPVE00TkRZeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982a5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "25dfdfb360350d2fb5e3e8e827c55500", + "x-ms-client-request-id": "37a6a3a4bc4015d9f85a5b6eaf0d8ee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4496", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:53 GMT", + "Content-Length": "1711", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "315ebb79-9867-4df9-8e87-98c2c5f41858", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61cdc43d-b4d0-455a-821c-743aa488b5fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165426", - "deletedDate": 1560532004, - "scheduledPurgeDate": 1568308004, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165426", - "attributes": { - "enabled": true, - "created": 1560532004, - "updated": 1560532004, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165427", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165427", - "attributes": { - "enabled": true, - "created": 1560532004, - "updated": 1560532004, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165428", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165428", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165429", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165429", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116543", - "deletedDate": 1560531999, - "scheduledPurgeDate": 1568307999, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116543", - "attributes": { - "enabled": true, - "created": 1560531999, - "updated": 1560531999, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165430", - "deletedDate": 1560532005, - "scheduledPurgeDate": 1568308005, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165430", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165431", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165431", - "attributes": { - "enabled": true, - "created": 1560532005, - "updated": 1560532005, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165432", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165432", - "attributes": { - "enabled": true, - "created": 1560532006, - "updated": 1560532006, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165433", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165433", - "attributes": { - "enabled": true, - "created": 1560532006, - "updated": 1560532006, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165434", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165434", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fBankAccountPassword-521455d6-ed6a-44ec-82b7-3b33716fdb77", + "deletedDate": 1565051806, + "scheduledPurgeDate": 1572827806, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fBankAccountPassword-521455d6-ed6a-44ec-82b7-3b33716fdb77", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "created": 1565051806, + "updated": 1565051806, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165435", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165435", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fBankAccountPassword-bff04556-f52d-4906-8526-a4bbd7bb1e79", + "deletedDate": 1565083402, + "scheduledPurgeDate": 1572859402, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fBankAccountPassword-bff04556-f52d-4906-8526-a4bbd7bb1e79", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "created": 1565083402, + "updated": 1565083402, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165436", - "deletedDate": 1560532006, - "scheduledPurgeDate": 1568308006, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165436", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fStorageAccountPasswor9ebbe6fa-3561-4517-a621-58b8bc2335b7", + "deletedDate": 1565083403, + "scheduledPurgeDate": 1572859403, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fStorageAccountPasswor9ebbe6fa-3561-4517-a621-58b8bc2335b7", "attributes": { "enabled": true, - "created": 1560532006, - "updated": 1560532006, + "exp": 1596705801020, + "created": 1565083401, + "updated": 1565083401, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165437", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165437", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002fStorageAccountPassworf3fb75f6-140a-4670-bec9-3730167cfe9e", + "deletedDate": 1565051806, + "scheduledPurgeDate": 1572827806, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002fStorageAccountPassworf3fb75f6-140a-4670-bec9-3730167cfe9e", "attributes": { "enabled": true, - "created": 1560532007, - "updated": 1560532007, + "exp": 1596674204723, + "created": 1565051805, + "updated": 1565051805, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXpOeTlHT0Rnek5Ua3dOMEZETVRjMFFrTTRRa014TlRZeE5VVkRNVEk0UVRNMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNRFkyTVRFMk5UUXpOeTlHT0Rnek5Ua3dOMEZETVRjMFFrTTRRa014TlRZeE5VVkRNVEk0UVRNMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364970?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982d8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14bbcbaa75ebaa8813f2d3b47b9ec411", + "x-ms-client-request-id": "76490db43ed11b4eef5f980d7c5f2968", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:53 GMT", + "Date": "Tue, 06 Aug 2019 18:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5098057d-c7ca-4b7d-8efd-5ee0aa636146", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "48e84da9-cb54-4d81-8ab6-fc12a17e6dd4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165438", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165438", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165439", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165439", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116544", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116544", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165440", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165440", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165441", - "deletedDate": 1560532007, - "scheduledPurgeDate": 1568308007, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165441", - "attributes": { - "enabled": true, - "created": 1560532007, - "updated": 1560532007, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165442", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165442", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165443", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165443", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165444", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165444", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165445", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165445", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165446", - "deletedDate": 1560532008, - "scheduledPurgeDate": 1568308008, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165446", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165447", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165447", - "attributes": { - "enabled": true, - "created": 1560532008, - "updated": 1560532008, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165448", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165448", - "attributes": { - "enabled": true, - "created": 1560532009, - "updated": 1560532009, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364971?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982d9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5a41d657e686445c7498825cd3f0ee32", + "x-ms-client-request-id": "e8a659836c04cf2f0e8f1539636740aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2248", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:54 GMT", + "Date": "Tue, 06 Aug 2019 18:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "75159303-5e3c-419a-ae82-7e720cb4bbba", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2133cb93-363d-400d-938d-c1191fe249b7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/10661165449", - "deletedDate": 1560532009, - "scheduledPurgeDate": 1568308009, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/10661165449", - "attributes": { - "enabled": true, - "created": 1560532009, - "updated": 1560532009, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116545", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116545", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116546", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116546", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116547", - "deletedDate": 1560532000, - "scheduledPurgeDate": 1568308000, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116547", - "attributes": { - "enabled": true, - "created": 1560532000, - "updated": 1560532000, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116548", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116548", - "attributes": { - "enabled": true, - "created": 1560532001, - "updated": 1560532001, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1066116549", - "deletedDate": 1560532001, - "scheduledPurgeDate": 1568308001, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1066116549", - "attributes": { - "enabled": true, - "created": 1560532001, - "updated": 1560532001, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNVEV2UmpZMk9VVTJNME5CT1VJME5FVkRSRUZETTBVMVJUQXlRVFJHT1RsRU9URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNVEV2UmpZMk9VVTJNME5CT1VJME5FVkRSRUZETTBVMVJUQXlRVFJHT1RsRU9URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364972?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982da-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e3c35b0579523dfc573511428c7b9116", + "x-ms-client-request-id": "f72cd84ef591fbef5e7c2ce0e17883a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:54 GMT", + "Date": "Tue, 06 Aug 2019 18:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab02f010-ce90-4d06-928a-65269dea805a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "17a7cfbc-91da-4e9c-9376-8f3cc6cbdbf7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364973?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982db-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5190d71ffb84c4796e769f53f32bd622", + "x-ms-client-request-id": "fdc468a70b2f4706dd7a67422915b788", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:54 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "086c889c-24eb-4214-bde1-861f28fdb440", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8014dd9d-18c3-478c-a7ff-6f8f871d7a02", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNelF2TURGRE56SXpNRUkzUmpoQk5FRXpNemczTWpFMFJqQkdPREpDT0Rnek1ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNVEkwTnpnM09URTFNelF2TURGRE56SXpNRUkzUmpoQk5FRXpNemczTWpFMFJqQkdPREpDT0Rnek1ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364974?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982dc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "20aea104e0daddbfd9040351d41ab7f9", + "x-ms-client-request-id": "a4beee1e32328ed669ab8a883f4fed95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:54 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3f84c4e8-ac80-4754-bc70-60907593b86e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a19f0bba-5963-4f41-9b3e-79a3b4cadc92", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364975?api-version=7.0", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982dd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fb3c6b079d5f09ade1ff75dbdaa94a2b", + "x-ms-client-request-id": "fa91720b42a2437bd1e51a178dacd248", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "976", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:54 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "42a3ffdd-84a7-41da-a0fd-cd31c6890cec", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0df1f80d-0dbd-41f4-907d-5c38284bd93a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/116948964", - "deletedDate": 1560273983, - "scheduledPurgeDate": 1568049983, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/116948964", - "attributes": { - "enabled": true, - "created": 1560273983, - "updated": 1560273983, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470610", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470610", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNVEF2TWpjMU1rTXhSakpDTlVNeE5FWXlSRGs0T1RrNU5rVTVSRE0zTWpkRU5ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNVEF2TWpjMU1rTXhSakpDTlVNeE5FWXlSRGs0T1RrNU5rVTVSRE0zTWpkRU5ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "eb3eef5e70cc3f3c18b37780f827ef54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3f288ac3-5085-419f-a90a-54126985763e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470611", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470611", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470612", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470612", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470613", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470613", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470614", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470614", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470615", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470615", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470616", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470616", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470617", - "deletedDate": 1559861096, - "scheduledPurgeDate": 1567637096, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470617", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470618", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470618", - "attributes": { - "enabled": true, - "created": 1559861096, - "updated": 1559861096, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470619", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470619", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147062", - "deletedDate": 1559861093, - "scheduledPurgeDate": 1567637093, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147062", - "attributes": { - "enabled": true, - "created": 1559861093, - "updated": 1559861093, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470620", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470620", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470621", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470621", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "874ba6bfdaef67c2f3a53eda6be30330", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6133938d-2a3a-42ca-9581-42b2ce05dbc0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470622", - "deletedDate": 1559861097, - "scheduledPurgeDate": 1567637097, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470622", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470623", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470623", - "attributes": { - "enabled": true, - "created": 1559861097, - "updated": 1559861097, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470624", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470624", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470625", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470625", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470626", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470626", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470627", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470627", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470628", - "deletedDate": 1559861098, - "scheduledPurgeDate": 1567637098, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470628", - "attributes": { - "enabled": true, - "created": 1559861098, - "updated": 1559861098, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470629", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470629", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147063", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147063", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470630", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470630", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470631", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470631", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470632", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470632", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470633", - "deletedDate": 1559861099, - "scheduledPurgeDate": 1567637099, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470633", - "attributes": { - "enabled": true, - "created": 1559861099, - "updated": 1559861099, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNek12TjBNek56aENOVEUwTnpjek5EUXdNems1T0RBeE5VVTNOVEZCUkVKR09FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNakF4TnpFME56QTJNek12TjBNek56aENOVEUwTnpjek5EUXdNems1T0RBeE5VVTNOVEZCUkVKR09FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e5f3d8b9cbdc962d2ffde3ac252d11ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d7444b19-c06b-4804-a14e-9c7586eed0c0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470634", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470634", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470635", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470635", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470636", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470636", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470637", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470637", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470638", - "deletedDate": 1559861100, - "scheduledPurgeDate": 1567637100, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470638", - "attributes": { - "enabled": true, - "created": 1559861100, - "updated": 1559861100, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470639", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470639", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147064", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147064", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470640", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470640", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470641", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470641", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470642", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470642", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470643", - "deletedDate": 1559861101, - "scheduledPurgeDate": 1567637101, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470643", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470644", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470644", - "attributes": { - "enabled": true, - "created": 1559861101, - "updated": 1559861101, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "331c2010c25d833b2cd7f8273161d334", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3548", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ec3031d6-835f-4032-b294-f437af1cdddf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470645", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470645", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470646", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470646", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470647", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470647", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470648", - "deletedDate": 1559861102, - "scheduledPurgeDate": 1567637102, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470648", - "attributes": { - "enabled": true, - "created": 1559861102, - "updated": 1559861102, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/120171470649", - "deletedDate": 1559861103, - "scheduledPurgeDate": 1567637103, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/120171470649", - "attributes": { - "enabled": true, - "created": 1559861103, - "updated": 1559861103, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147065", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147065", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147066", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147066", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147067", - "deletedDate": 1559861094, - "scheduledPurgeDate": 1567637094, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147067", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147068", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147068", - "attributes": { - "enabled": true, - "created": 1559861094, - "updated": 1559861094, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12017147069", - "deletedDate": 1559861095, - "scheduledPurgeDate": 1567637095, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12017147069", - "attributes": { - "enabled": true, - "created": 1559861095, - "updated": 1559861095, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNalV5T0RBd01EQXhNUzlHTXpRM1JEVTVNVVpGTWpFMFFrWkRPRUl5TnpJeU5FRXpRekJCTmprME9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHhNalV5T0RBd01EQXhNUzlHTXpRM1JEVTVNVVpGTWpFMFFrWkRPRUl5TnpJeU5FRXpRekJCTmprME9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "20c646af0934f37879b557f1f71541c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2842", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9f346d85-8045-4701-bc39-dcff2c3fca16", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1264450906", - "deletedDate": 1560273189, - "scheduledPurgeDate": 1568049189, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1264450906", - "attributes": { - "enabled": true, - "created": 1560273188, - "updated": 1560273188, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1271946808", - "deletedDate": 1560273961, - "scheduledPurgeDate": 1568049961, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1271946808", - "attributes": { - "enabled": true, - "created": 1560273961, - "updated": 1560273961, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559280", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559280", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559281", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559281", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592810", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592810", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592811", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592811", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592812", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592812", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592813", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592813", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4aca8493d0c7f6d39c6fb904d30664ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8cbc0f03-f66c-4fc4-b825-6fd98b1af91e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592814", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592814", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592815", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592815", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592816", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592816", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592817", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592817", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592818", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592818", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592819", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592819", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559282", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559282", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592820", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592820", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592821", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592821", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592822", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592822", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592823", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592823", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592824", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592824", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592825", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592825", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRNalV2UmpKQk1UZ3pOVGszUWpJNE5ETTFPRUZFTmpVMk9EYzBSakJFUTBVd09UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRNalV2UmpKQk1UZ3pOVGszUWpJNE5ETTFPRUZFTmpVMk9EYzBSakJFUTBVd09UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "defdaf29f1670685a829baa76b498c16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "22093711-4ed1-45d9-8c65-779a7f703f2f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592826", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592826", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592827", - "deletedDate": 1560272498, - "scheduledPurgeDate": 1568048498, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592827", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592828", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592828", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592829", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592829", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559283", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559283", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592830", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592830", - "attributes": { - "enabled": true, - "created": 1560272475, - "updated": 1560272475, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592831", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592831", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592832", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592832", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592833", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592833", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592834", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592834", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592835", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592835", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592836", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592836", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ad9332958996df6d73cf83c550731f73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "88f3b311-506c-4cbc-946f-92c940816e74", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592837", - "deletedDate": 1560272499, - "scheduledPurgeDate": 1568048499, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592837", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592838", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592838", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592839", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592839", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559284", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559284", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592840", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592840", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592841", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592841", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592842", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592842", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592843", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592843", - "attributes": { - "enabled": true, - "created": 1560272476, - "updated": 1560272476, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592844", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592844", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592845", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592845", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592846", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592846", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592847", - "deletedDate": 1560272500, - "scheduledPurgeDate": 1568048500, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592847", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592848", - "deletedDate": 1560272501, - "scheduledPurgeDate": 1568048501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592848", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRORGd2UVVJelFVRTROelEyTUVJd05ERXdNemcxUTBGRVFrTTJRalF5TWpkRlJqRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNamt4TmpVMU9USTRORGd2UVVJelFVRTROelEyTUVJd05ERXdNemcxUTBGRVFrTTJRalF5TWpkRlJqRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "48c889506318a15efec3a29d152b8b52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3806", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "423f9e76-0566-4756-8a49-f18c106f9b29", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/129165592849", - "deletedDate": 1560272501, - "scheduledPurgeDate": 1568048501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/129165592849", - "attributes": { - "enabled": true, - "created": 1560272477, - "updated": 1560272477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559285", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559285", - "attributes": { - "enabled": true, - "created": 1560272473, - "updated": 1560272473, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559286", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559286", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559287", - "deletedDate": 1560272496, - "scheduledPurgeDate": 1568048496, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559287", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559288", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559288", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/12916559289", - "deletedDate": 1560272497, - "scheduledPurgeDate": 1568048497, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12916559289", - "attributes": { - "enabled": true, - "created": 1560272474, - "updated": 1560272474, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778970", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778970", - "attributes": { - "enabled": true, - "created": 1560273677, - "updated": 1560273677, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778971", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778971", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789710", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789710", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789711", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789711", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789712", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789712", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a06fa2e3b772a037411d6b976dc0b635", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7c1588a-afca-4b38-880b-715330a7b478", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789713", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789713", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789714", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789714", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789715", - "deletedDate": 1560273680, - "scheduledPurgeDate": 1568049680, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789715", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789716", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789716", - "attributes": { - "enabled": true, - "created": 1560273680, - "updated": 1560273680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789717", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789717", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789718", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789718", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789719", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789719", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778972", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778972", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789720", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789720", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789721", - "deletedDate": 1560273681, - "scheduledPurgeDate": 1568049681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789721", - "attributes": { - "enabled": true, - "created": 1560273681, - "updated": 1560273681, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789722", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789722", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789723", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789723", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789724", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789724", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNNalF2UTBVNU9FSTBSRFEyUTBFek5EUXlRVGxDTWtaRFF6WkNRVEUyTURGQ01FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNNalF2UTBVNU9FSTBSRFEyUTBFek5EUXlRVGxDTWtaRFF6WkNRVEUyTURGQ01FWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e1574709448132fdd4f1aed3e7cfc947", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a6e2617e-ca82-40b9-90b6-4d3aee99ff65", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789725", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789725", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789726", - "deletedDate": 1560273682, - "scheduledPurgeDate": 1568049682, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789726", - "attributes": { - "enabled": true, - "created": 1560273682, - "updated": 1560273682, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789727", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789727", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789728", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789728", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789729", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789729", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778973", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778973", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789730", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789730", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789731", - "deletedDate": 1560273683, - "scheduledPurgeDate": 1568049683, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789731", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789732", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789732", - "attributes": { - "enabled": true, - "created": 1560273683, - "updated": 1560273683, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789733", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789733", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789734", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789734", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789735", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789735", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "aee131437f039800512706fbf7c6343e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2547d888-d35d-4476-83ce-7f4f48626067", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789736", - "deletedDate": 1560273684, - "scheduledPurgeDate": 1568049684, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789736", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789737", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789737", - "attributes": { - "enabled": true, - "created": 1560273684, - "updated": 1560273684, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789738", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789738", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789739", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789739", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778974", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778974", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789740", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789740", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789741", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789741", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789742", - "deletedDate": 1560273685, - "scheduledPurgeDate": 1568049685, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789742", - "attributes": { - "enabled": true, - "created": 1560273685, - "updated": 1560273685, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789743", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789743", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789744", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789744", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789745", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789745", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789746", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789746", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789747", - "deletedDate": 1560273686, - "scheduledPurgeDate": 1568049686, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789747", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNORGN2TVVVMU1VUkVPRFF6UlRaRk5EVTRPVUk1T1VZMk5UUkdOakkyUmpSRk5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNelUyTmpjM09EazNORGN2TVVVMU1VUkVPRFF6UlRaRk5EVTRPVUk1T1VZMk5UUkdOakkyUmpSRk5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ce946c0da9d49ed0a43dcb800964b972", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4128", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e9cfea0e-0552-487d-bf5b-0e29bb55af64", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789748", - "deletedDate": 1560273687, - "scheduledPurgeDate": 1568049687, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789748", - "attributes": { - "enabled": true, - "created": 1560273686, - "updated": 1560273686, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/135667789749", - "deletedDate": 1560273687, - "scheduledPurgeDate": 1568049687, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/135667789749", - "attributes": { - "enabled": true, - "created": 1560273687, - "updated": 1560273687, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778975", - "deletedDate": 1560273678, - "scheduledPurgeDate": 1568049678, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778975", - "attributes": { - "enabled": true, - "created": 1560273678, - "updated": 1560273678, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778976", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778976", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778977", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778977", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778978", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778978", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13566778979", - "deletedDate": 1560273679, - "scheduledPurgeDate": 1568049679, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13566778979", - "attributes": { - "enabled": true, - "created": 1560273679, - "updated": 1560273679, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329510", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329510", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329511", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329511", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295110", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295110", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295111", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295111", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295112", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295112", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3c53235408de8a3146bf90593d023a0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0287f2fc-2250-45e9-ab4b-a30b5b4799e6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295113", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295113", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295114", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295114", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295115", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295115", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295116", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295116", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295117", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295117", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295118", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295118", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295119", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295119", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329512", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329512", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295120", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295120", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295121", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295121", - "attributes": { - "enabled": true, - "created": 1560273715, - "updated": 1560273715, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295122", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295122", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295123", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295123", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295124", - "deletedDate": 1560273740, - "scheduledPurgeDate": 1568049740, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295124", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhNalF2TXpORVJURXdSak0zTUVOQ05FUXdPRGszTUVFek5VUXdSRVJET0RBM04wVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhNalF2TXpORVJURXdSak0zTUVOQ05FUXdPRGszTUVFek5VUXdSRVJET0RBM04wVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7ac570bdfb3b9973614209c6b37f8eed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d43d6e75-e277-4226-86a7-2a19b44fc7f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295125", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295125", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295126", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295126", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295127", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295127", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295128", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295128", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295129", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295129", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329513", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329513", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295130", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295130", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295131", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295131", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295132", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295132", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295133", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295133", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295134", - "deletedDate": 1560273741, - "scheduledPurgeDate": 1568049741, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295134", - "attributes": { - "enabled": true, - "created": 1560273716, - "updated": 1560273716, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295135", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295135", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d4a7936ef872055f3b0a8714197661a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9b8af506-a362-4e29-ab09-182f2c4009af", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295136", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295136", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295137", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295137", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295138", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295138", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295139", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295139", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329514", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329514", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295140", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295140", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295141", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295141", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295142", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295142", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295143", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295143", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295144", - "deletedDate": 1560273742, - "scheduledPurgeDate": 1568049742, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295144", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295145", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295145", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295146", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295146", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295147", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295147", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhORGN2TmtFeFJqRTBNakUxUlVRM05EVTRNVUpFT1VNMU5qWTBRVEkwUWtRM05qQWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhNemc1T1RNeU9UVXhORGN2TmtFeFJqRTBNakUxUlVRM05EVTRNVUpFT1VNMU5qWTBRVEkwUWtRM05qQWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "99c3bd033f9e5937afb9db9bfe6bd6c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3484", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "802ee2a1-8df6-449c-aed0-31a61a6611cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295148", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295148", - "attributes": { - "enabled": true, - "created": 1560273717, - "updated": 1560273717, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/138993295149", - "deletedDate": 1560273743, - "scheduledPurgeDate": 1568049743, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/138993295149", - "attributes": { - "enabled": true, - "created": 1560273718, - "updated": 1560273718, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329515", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329515", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329516", - "deletedDate": 1560273738, - "scheduledPurgeDate": 1568049738, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329516", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329517", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329517", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329518", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329518", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/13899329519", - "deletedDate": 1560273739, - "scheduledPurgeDate": 1568049739, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/13899329519", - "attributes": { - "enabled": true, - "created": 1560273714, - "updated": 1560273714, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1459629058", - "deletedDate": 1560274220, - "scheduledPurgeDate": 1568050220, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1459629058", - "attributes": { - "enabled": true, - "created": 1560274202, - "updated": 1560274202, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350229", - "deletedDate": 1559860327, - "scheduledPurgeDate": 1567636327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350229", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350230", - "deletedDate": 1559860327, - "scheduledPurgeDate": 1567636327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350230", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a9eba230655bc59b10c03e31735e80ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5bbd906c-0a0e-45ee-b8ca-f8da2f2e23a1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350231", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350231", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350232", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350232", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350233", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350233", - "attributes": { - "enabled": true, - "created": 1559860307, - "updated": 1559860307, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350234", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350234", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350235", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350235", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350236", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350236", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350237", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350237", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350238", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350238", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350239", - "deletedDate": 1559860328, - "scheduledPurgeDate": 1567636328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350239", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350240", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350240", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350241", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350241", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350242", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350242", - "attributes": { - "enabled": true, - "created": 1559860308, - "updated": 1559860308, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350243", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350243", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOVEkxTnpNek5UQXlORE12TURWR05UWXlNakV5T0RFeE5EWkdSa0kzTlVVelJqUkRSRFUyTURoRlEwRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhOVEkxTnpNek5UQXlORE12TURWR05UWXlNakV5T0RFeE5EWkdSa0kzTlVVelJqUkRSRFUyTURoRlEwRWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f5c367e1f5bc2f4f5c4d25b81dc306d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3490", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "97eba833-48d8-4467-aa54-f6a4cab0ed49", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350244", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350244", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350245", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350245", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350246", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350246", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350247", - "deletedDate": 1559860329, - "scheduledPurgeDate": 1567636329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350247", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350248", - "deletedDate": 1559860330, - "scheduledPurgeDate": 1567636330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350248", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/152573350249", - "deletedDate": 1559860330, - "scheduledPurgeDate": 1567636330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/152573350249", - "attributes": { - "enabled": true, - "created": 1559860309, - "updated": 1559860309, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1580011209", - "deletedDate": 1560273367, - "scheduledPurgeDate": 1568049367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1580011209", - "attributes": { - "enabled": true, - "created": 1560273367, - "updated": 1560273367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1667779688", - "deletedDate": 1560273656, - "scheduledPurgeDate": 1568049656, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1667779688", - "attributes": { - "enabled": true, - "created": 1560273656, - "updated": 1560273656, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577610", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577610", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577611", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577611", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "77e4c033b78b9d4622fd88de0005e550", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a93faf5e-1766-4e1d-a7d4-80ac43b42dd1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577612", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577612", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577613", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577613", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577614", - "deletedDate": 1559861477, - "scheduledPurgeDate": 1567637477, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577614", - "attributes": { - "enabled": true, - "created": 1559861477, - "updated": 1559861477, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577615", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577615", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577616", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577616", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577617", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577617", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577618", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577618", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577619", - "deletedDate": 1559861478, - "scheduledPurgeDate": 1567637478, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577619", - "attributes": { - "enabled": true, - "created": 1559861478, - "updated": 1559861478, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577620", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577620", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577621", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577621", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577622", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577622", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577623", - "deletedDate": 1559861479, - "scheduledPurgeDate": 1567637479, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577623", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577624", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577624", - "attributes": { - "enabled": true, - "created": 1559861479, - "updated": 1559861479, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNalF2TVVVMk1qRTNNRFJCT0RsRE5FSkJOamsxTUVNd056Z3lNa0V6UmpNeU5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNalF2TVVVMk1qRTNNRFJCT0RsRE5FSkJOamsxTUVNd056Z3lNa0V6UmpNeU5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "97b9f039e1a73b0a53bb4d0d40e2a84d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4142", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8c89ab95-409f-498e-bfd1-e2d10be3d8f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577625", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577625", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577626", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577626", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577627", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577627", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577628", - "deletedDate": 1559861480, - "scheduledPurgeDate": 1567637480, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577628", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577629", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577629", - "attributes": { - "enabled": true, - "created": 1559861480, - "updated": 1559861480, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577630", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577630", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577631", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577631", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577632", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577632", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577633", - "deletedDate": 1559861481, - "scheduledPurgeDate": 1567637481, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577633", - "attributes": { - "enabled": true, - "created": 1559861481, - "updated": 1559861481, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577634", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577634", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577635", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577635", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577636", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577636", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b2fd6eb9087a2a5f2025d2be6c702f56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4524", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c61c2499-1491-4c0c-a301-c107ad1772f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577637", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577637", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577638", - "deletedDate": 1559861482, - "scheduledPurgeDate": 1567637482, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577638", - "attributes": { - "enabled": true, - "created": 1559861482, - "updated": 1559861482, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577639", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577639", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577640", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577640", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577641", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577641", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577642", - "deletedDate": 1559861483, - "scheduledPurgeDate": 1567637483, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577642", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577643", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577643", - "attributes": { - "enabled": true, - "created": 1559861483, - "updated": 1559861483, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577644", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577644", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577645", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577645", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577646", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577646", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577647", - "deletedDate": 1559861484, - "scheduledPurgeDate": 1567637484, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577647", - "attributes": { - "enabled": true, - "created": 1559861484, - "updated": 1559861484, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577648", - "deletedDate": 1559861485, - "scheduledPurgeDate": 1567637485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577648", - "attributes": { - "enabled": true, - "created": 1559861485, - "updated": 1559861485, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/181537577649", - "deletedDate": 1559861485, - "scheduledPurgeDate": 1567637485, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/181537577649", - "attributes": { - "enabled": true, - "created": 1559861485, - "updated": 1559861485, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJORGt2TVVRNFJURTJORGREUTBFeE5FRkVNamxDTlRGRlFrRXdPVVV3TkRnNU5qVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJORGt2TVVRNFJURTJORGREUTBFeE5FRkVNamxDTlRGRlFrRXdPVVV3TkRnNU5qVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2c7fd4686f095128b5a823cf6a385c40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2832", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4e8fce6f-bf6d-4f2c-8e46-3d05a66a5b47", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1856453306", - "deletedDate": 1560272567, - "scheduledPurgeDate": 1568048567, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1856453306", - "attributes": { - "enabled": true, - "created": 1560272567, - "updated": 1560272567, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d0", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d0", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d1", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d1", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d10", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d10", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d11", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d11", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d12", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d12", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d13", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d13", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "92243b55330830d6918f76810e4ccfe2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:48:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "421797ef-a3a4-440e-b243-bdc80ffdad85", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d14", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d14", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d15", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d15", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d16", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d16", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d17", - "deletedDate": 1559859811, - "scheduledPurgeDate": 1567635811, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d17", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d18", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d18", - "attributes": { - "enabled": true, - "created": 1559859811, - "updated": 1559859811, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d19", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d19", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d2", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d2", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d20", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d20", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d21", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d21", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d22", - "deletedDate": 1559859812, - "scheduledPurgeDate": 1567635812, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d22", - "attributes": { - "enabled": true, - "created": 1559859812, - "updated": 1559859812, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d23", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d23", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d24", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d24", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d25", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d25", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRJMUwwWXhNVUV3TkVSRk9ESTJSalJDT1VVNE1UazRORUU1TUVVeFJqSkZOemRHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRJMUwwWXhNVUV3TkVSRk9ESTJSalJDT1VVNE1UazRORUU1TUVVeFJqSkZOemRHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6ba5f68c7b634a4345abfdd1e58fc0e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b219cac6-53ea-4106-8662-09f47e01e46e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d26", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d26", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d27", - "deletedDate": 1559859813, - "scheduledPurgeDate": 1567635813, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d27", - "attributes": { - "enabled": true, - "created": 1559859813, - "updated": 1559859813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d28", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d28", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d29", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d29", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d3", - "deletedDate": 1559859808, - "scheduledPurgeDate": 1567635808, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d3", - "attributes": { - "enabled": true, - "created": 1559859808, - "updated": 1559859808, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d30", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d30", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d31", - "deletedDate": 1559859814, - "scheduledPurgeDate": 1567635814, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d31", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d32", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d32", - "attributes": { - "enabled": true, - "created": 1559859814, - "updated": 1559859814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d33", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d33", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d34", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d34", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d35", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d35", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d36", - "deletedDate": 1559859815, - "scheduledPurgeDate": 1567635815, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d36", - "attributes": { - "enabled": true, - "created": 1559859815, - "updated": 1559859815, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "306892c99c4c344efe4e9b7af8a74369", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ea5fda7-af5d-4fb9-987f-5e55b4ad8478", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d37", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d37", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d38", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d38", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d39", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d39", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d4", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d4", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d40", - "deletedDate": 1559859816, - "scheduledPurgeDate": 1567635816, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d40", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d41", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d41", - "attributes": { - "enabled": true, - "created": 1559859816, - "updated": 1559859816, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d42", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d42", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d43", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d43", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d44", - "deletedDate": 1559859817, - "scheduledPurgeDate": 1567635817, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d44", - "attributes": { - "enabled": true, - "created": 1559859817, - "updated": 1559859817, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d45", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d45", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d46", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d46", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d47", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d47", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d48", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d48", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRRNEx6azJOakpGTlVFM05USTFRalJDTlVVNVFqYzBNRU5DUVVFMk5UVkJNek0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRRNEx6azJOakpGTlVFM05USTFRalJDTlVVNVFqYzBNRU5DUVVFMk5UVkJNek0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "744241d9f092d9ddf8d94c5c36044b01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4382", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cb690da3-853e-48b2-91ce-e144555443b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d49", - "deletedDate": 1559859818, - "scheduledPurgeDate": 1567635818, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d49", - "attributes": { - "enabled": true, - "created": 1559859818, - "updated": 1559859818, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d5", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d5", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d6", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d6", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d7", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d7", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d8", - "deletedDate": 1559859809, - "scheduledPurgeDate": 1567635809, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d8", - "attributes": { - "enabled": true, - "created": 1559859809, - "updated": 1559859809, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/186e0fa746df465ea71cc61868929c8d9", - "deletedDate": 1559859810, - "scheduledPurgeDate": 1567635810, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/186e0fa746df465ea71cc61868929c8d9", - "attributes": { - "enabled": true, - "created": 1559859810, - "updated": 1559859810, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1876230623", - "deletedDate": 1560273351, - "scheduledPurgeDate": 1568049351, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1876230623", - "attributes": { - "enabled": true, - "created": 1560273351, - "updated": 1560273351, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/188481008", - "deletedDate": 1560273340, - "scheduledPurgeDate": 1568049340, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/188481008", - "attributes": { - "enabled": true, - "created": 1560273340, - "updated": 1560273340, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364970", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364970", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364971", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364971", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649710", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649710", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649711", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649711", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM01USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM01USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7cb88ece9ee3ef95a7706d14e0c8519e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7dde1c3-a29e-4529-993b-937063b8b1c7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649712", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649712", - "attributes": { - "enabled": true, - "created": 1560804503, - "updated": 1560804503, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649713", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649713", - "attributes": { - "enabled": true, - "created": 1560804503, - "updated": 1560804503, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649714", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649714", - "attributes": { - "enabled": true, - "created": 1560804503, - "updated": 1560804503, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649715", - "deletedDate": 1560804503, - "scheduledPurgeDate": 1568580503, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649715", - "attributes": { - "enabled": true, - "created": 1560804503, - "updated": 1560804503, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649716", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649716", - "attributes": { - "enabled": true, - "created": 1560804503, - "updated": 1560804503, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649717", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649717", - "attributes": { - "enabled": true, - "created": 1560804504, - "updated": 1560804504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649718", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649718", - "attributes": { - "enabled": true, - "created": 1560804504, - "updated": 1560804504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649719", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649719", - "attributes": { - "enabled": true, - "created": 1560804504, - "updated": 1560804504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364972", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364972", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649720", - "deletedDate": 1560804504, - "scheduledPurgeDate": 1568580504, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649720", - "attributes": { - "enabled": true, - "created": 1560804504, - "updated": 1560804504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649721", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649721", - "attributes": { - "enabled": true, - "created": 1560804504, - "updated": 1560804504, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649722", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649722", - "attributes": { - "enabled": true, - "created": 1560804505, - "updated": 1560804505, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649723", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649723", - "attributes": { - "enabled": true, - "created": 1560804505, - "updated": 1560804505, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNNak12TmpSR09EbENSVFkwTWpjeU5EZ3dOa0pHTlRnNE9ERTFPVU5FUVRFd1FUY2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNNak12TmpSR09EbENSVFkwTWpjeU5EZ3dOa0pHTlRnNE9ERTFPVU5FUVRFd1FUY2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a4f794684c4dd855b48e377250f2fef9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4140", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6e33f96-0ba5-4ecc-8f99-61b1822464c6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649724", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649724", - "attributes": { - "enabled": true, - "created": 1560804505, - "updated": 1560804505, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649725", - "deletedDate": 1560804505, - "scheduledPurgeDate": 1568580505, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649725", - "attributes": { - "enabled": true, - "created": 1560804505, - "updated": 1560804505, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649726", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649726", - "attributes": { - "enabled": true, - "created": 1560804505, - "updated": 1560804505, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649727", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649727", - "attributes": { - "enabled": true, - "created": 1560804506, - "updated": 1560804506, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649728", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649728", - "attributes": { - "enabled": true, - "created": 1560804506, - "updated": 1560804506, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649729", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649729", - "attributes": { - "enabled": true, - "created": 1560804506, - "updated": 1560804506, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364973", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364973", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649730", - "deletedDate": 1560804506, - "scheduledPurgeDate": 1568580506, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649730", - "attributes": { - "enabled": true, - "created": 1560804506, - "updated": 1560804506, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649731", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649731", - "attributes": { - "enabled": true, - "created": 1560804506, - "updated": 1560804506, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649732", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649732", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649733", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649733", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649734", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649734", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM016VWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9URTJORE0yTkRrM016VWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6aab9902c6ee3a85ab52cc2283c8f92f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4522", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aa8cc708-15ce-4f3b-ba62-af1f62af7b3d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649735", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649735", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649736", - "deletedDate": 1560804507, - "scheduledPurgeDate": 1568580507, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649736", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649737", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649737", - "attributes": { - "enabled": true, - "created": 1560804507, - "updated": 1560804507, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649738", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649738", - "attributes": { - "enabled": true, - "created": 1560804508, - "updated": 1560804508, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649739", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649739", - "attributes": { - "enabled": true, - "created": 1560804508, - "updated": 1560804508, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364974", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364974", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649740", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649740", - "attributes": { - "enabled": true, - "created": 1560804508, - "updated": 1560804508, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649741", - "deletedDate": 1560804508, - "scheduledPurgeDate": 1568580508, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649741", - "attributes": { - "enabled": true, - "created": 1560804508, - "updated": 1560804508, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649742", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649742", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649743", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649743", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649744", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649744", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649745", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649745", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649746", - "deletedDate": 1560804509, - "scheduledPurgeDate": 1568580509, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649746", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNORFl2TXpNNVJVTXhOVFV6TlRkR05EYzJRemxCTlVFNU9URTROREExUWtSRU9ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPVEUyTkRNMk5EazNORFl2TXpNNVJVTXhOVFV6TlRkR05EYzJRemxCTlVFNU9URTROREExUWtSRU9ESWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a1f3ae88a70c82b439e0c85567239fb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2844", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a9e8df9e-c23d-4914-bc1d-32557698e332", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649747", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649747", - "attributes": { - "enabled": true, - "created": 1560804509, - "updated": 1560804509, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649748", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649748", - "attributes": { - "enabled": true, - "created": 1560804510, - "updated": 1560804510, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649749", - "deletedDate": 1560804510, - "scheduledPurgeDate": 1568580510, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/191643649749", - "attributes": { - "enabled": true, - "created": 1560804510, - "updated": 1560804510, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364975", - "deletedDate": 1560804501, - "scheduledPurgeDate": 1568580501, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364975", - "attributes": { - "enabled": true, - "created": 1560804501, - "updated": 1560804501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364976", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364976", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364977", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364977", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364978", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364978", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364979", - "deletedDate": 1560804502, - "scheduledPurgeDate": 1568580502, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19164364979", - "attributes": { - "enabled": true, - "created": 1560804502, - "updated": 1560804502, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "47127371e71da1af0ebdf9fa7f3254ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "654", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b7e48a5d-0d59-43e2-8076-6f7c30264ee7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/235081672", - "deletedDate": 1560273145, - "scheduledPurgeDate": 1568049145, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/235081672", - "attributes": { - "enabled": true, - "created": 1560273144, - "updated": 1560273144, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXhOUzlET1RrME5qSTJRVUpHTlVZMFFVVkNPVVUwTkVVME1Ua3dSamN4TnpreVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXhOUzlET1RrME5qSTJRVUpHTlVZMFFVVkNPVVUwTkVVME1Ua3dSamN4TnpreVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a1ea07955cfe5bede529310efe2fd387", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cb59fa63-0ef0-4b8e-a69a-f5678271dcf5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0fb017b3b2b6a012ff51934fadba0306", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5dbc5e0f-d163-440d-9193-03e1d2ab1432", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXpPQzh5UmtWRk9EUTBOMFZDTlRBME9UVkRPRUZCUmtRd1EwTkVSalU0UmtGRk9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXpPQzh5UmtWRk9EUTBOMFZDTlRBME9UVkRPRUZCUmtRd1EwTkVSalU0UmtGRk9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "5fbfdb8bfe3815b686b662f3b6a1a3df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f9e0139a-253c-4f69-a57b-f539dfc1270f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "674671e94582e335f549a1adc99dad2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2574", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "26ec1bee-9588-4589-855e-c154260ef299", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/264708401", - "deletedDate": 1560272535, - "scheduledPurgeDate": 1568048535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/264708401", - "attributes": { - "enabled": true, - "created": 1560272535, - "updated": 1560272535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828910", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828910", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828911", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828911", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828912", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828912", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828913", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828913", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828914", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828914", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828915", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828915", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3hOUzlGUVVGRE16TXlSRGt5TkVRMFJrTTNPRFpFUXpkQ01qazBNVVUzTTBNMU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3hOUzlGUVVGRE16TXlSRGt5TkVRMFJrTTNPRFpFUXpkQ01qazBNVVUzTTBNMU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "22832b25746fb44f619b88ff501eea5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "466856c1-0ff1-4ad1-a2e9-e68338621a2b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828916", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828916", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828917", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828917", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828918", - "deletedDate": 1559860367, - "scheduledPurgeDate": 1567636367, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828918", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828919", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828919", - "attributes": { - "enabled": true, - "created": 1559860367, - "updated": 1559860367, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982892", - "deletedDate": 1559860364, - "scheduledPurgeDate": 1567636364, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982892", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828920", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828920", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828921", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828921", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828922", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828922", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828923", - "deletedDate": 1559860368, - "scheduledPurgeDate": 1567636368, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828923", - "attributes": { - "enabled": true, - "created": 1559860368, - "updated": 1559860368, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828924", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828924", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828925", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828925", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828926", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828926", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3c65b3ae9b734583a5dc6aee5c084be8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4496", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "81b4bc2f-d99d-4cdd-a99b-fc4886a3b087", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828927", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828927", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828928", - "deletedDate": 1559860369, - "scheduledPurgeDate": 1567636369, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828928", - "attributes": { - "enabled": true, - "created": 1559860369, - "updated": 1559860369, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828929", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828929", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982893", - "deletedDate": 1559860364, - "scheduledPurgeDate": 1567636364, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982893", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828930", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828930", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828931", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828931", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828932", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828932", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828933", - "deletedDate": 1559860370, - "scheduledPurgeDate": 1567636370, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828933", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828934", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828934", - "attributes": { - "enabled": true, - "created": 1559860370, - "updated": 1559860370, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828935", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828935", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828936", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828936", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828937", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828937", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828938", - "deletedDate": 1559860371, - "scheduledPurgeDate": 1567636371, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828938", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3pPQzlCUmtZd00wRTVRakl4TnpFME5UZzFPVEk0TWpBMU1ESXdSVUpGUVVZeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3pPQzlCUmtZd00wRTVRakl4TnpFME5UZzFPVEk0TWpBMU1ESXdSVUpGUVVZeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8bce3708801d756f229205e7bc3693d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "42e88308-ae85-4a16-8806-565b345b3fd2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828939", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828939", - "attributes": { - "enabled": true, - "created": 1559860371, - "updated": 1559860371, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982894", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982894", - "attributes": { - "enabled": true, - "created": 1559860364, - "updated": 1559860364, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828940", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828940", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828941", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828941", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828942", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828942", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828943", - "deletedDate": 1559860372, - "scheduledPurgeDate": 1567636372, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828943", - "attributes": { - "enabled": true, - "created": 1559860372, - "updated": 1559860372, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828944", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828944", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828945", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828945", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828946", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828946", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828947", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828947", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828948", - "deletedDate": 1559860373, - "scheduledPurgeDate": 1567636373, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828948", - "attributes": { - "enabled": true, - "created": 1559860373, - "updated": 1559860373, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/28509828949", - "deletedDate": 1559860374, - "scheduledPurgeDate": 1567636374, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/28509828949", - "attributes": { - "enabled": true, - "created": 1559860374, - "updated": 1559860374, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "16fe435f71388ab7a73d7c9309605758", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1928", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b8be536e-ddc3-43d6-b074-48658d11dace", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982895", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982895", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982896", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982896", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982897", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982897", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982898", - "deletedDate": 1559860365, - "scheduledPurgeDate": 1567636365, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982898", - "attributes": { - "enabled": true, - "created": 1559860365, - "updated": 1559860365, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/2850982899", - "deletedDate": 1559860366, - "scheduledPurgeDate": 1567636366, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2850982899", - "attributes": { - "enabled": true, - "created": 1559860366, - "updated": 1559860366, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHpNamd6TVRZMU56UTBMemRCUVVFMVFqaEVORUl3UmpRNE1UZzVOMEk0UXpoRlJVSTRSVGMxUmtORUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHpNamd6TVRZMU56UTBMemRCUVVFMVFqaEVORUl3UmpRNE1UZzVOMEk0UXpoRlJVSTRSVGMxUmtORUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "18f6a0505f502d4044ef1ae1959c896f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3928", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e1d37cc9-6075-473a-ad84-ab342eb2ebcd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/382171165", - "deletedDate": 1559861852, - "scheduledPurgeDate": 1567637852, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/382171165", - "attributes": { - "enabled": true, - "created": 1559861852, - "updated": 1559861852, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e0", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e0", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e1", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e1", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e10", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e10", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e11", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e11", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e12", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e12", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e13", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e13", - "attributes": { - "enabled": true, - "created": 1559859786, - "updated": 1559859786, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e14", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e14", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e15", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e15", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e16", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e16", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "198f9349350a97b08043e3e004db6bc1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "430f4769-5e25-4278-87b4-3c0e196036e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e17", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e17", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e18", - "deletedDate": 1559859787, - "scheduledPurgeDate": 1567635787, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e18", - "attributes": { - "enabled": true, - "created": 1559859787, - "updated": 1559859787, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e19", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e19", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e2", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e2", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e20", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e20", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e21", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e21", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e22", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e22", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e23", - "deletedDate": 1559859788, - "scheduledPurgeDate": 1567635788, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e23", - "attributes": { - "enabled": true, - "created": 1559859788, - "updated": 1559859788, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e24", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e24", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e25", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e25", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e26", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e26", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e27", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e27", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e28", - "deletedDate": 1559859789, - "scheduledPurgeDate": 1567635789, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e28", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRJNEx6UXpSRUV6TURreFJUWTBOalJFT0VGQ01FWXdOemxHUXpVeVFUTTRRakV3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRJNEx6UXpSRUV6TURreFJUWTBOalJFT0VGQ01FWXdOemxHUXpVeVFUTTRRakV3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1c97ac3a7a3fff8503d1d14857d5f40b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4707", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ca103ca3-e16e-4727-830b-4626db687bcb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e29", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e29", - "attributes": { - "enabled": true, - "created": 1559859789, - "updated": 1559859789, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e3", - "deletedDate": 1559859784, - "scheduledPurgeDate": 1567635784, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e3", - "attributes": { - "enabled": true, - "created": 1559859784, - "updated": 1559859784, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e30", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e30", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e31", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e31", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e32", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e32", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e33", - "deletedDate": 1559859790, - "scheduledPurgeDate": 1567635790, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e33", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e34", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e34", - "attributes": { - "enabled": true, - "created": 1559859790, - "updated": 1559859790, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e35", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e35", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e36", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e36", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e37", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e37", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e38", - "deletedDate": 1559859791, - "scheduledPurgeDate": 1567635791, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e38", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e39", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e39", - "attributes": { - "enabled": true, - "created": 1559859791, - "updated": 1559859791, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "76490db43ed11b4eef5f980d7c5f2968", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "93b96950-1dfc-40d9-8323-09915d3db00c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e4", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e4", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e40", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e40", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e41", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e41", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e42", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e42", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e43", - "deletedDate": 1559859792, - "scheduledPurgeDate": 1567635792, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e43", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e44", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e44", - "attributes": { - "enabled": true, - "created": 1559859792, - "updated": 1559859792, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e45", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e45", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e46", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e46", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e47", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e47", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e48", - "deletedDate": 1559859793, - "scheduledPurgeDate": 1567635793, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e48", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e49", - "deletedDate": 1559859794, - "scheduledPurgeDate": 1567635794, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e49", - "attributes": { - "enabled": true, - "created": 1559859793, - "updated": 1559859793, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e5", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e5", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e6", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e6", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNTYhTURBd01EY3pJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRZdk1FTTVOalUwT1RCRE1UY3hORE01TmtGQk9VVTRORFZCTXpsRVJESXpPREloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNTYhTURBd01EY3pJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRZdk1FTTVOalUwT1RCRE1UY3hORE01TmtGQk9VVTRORFZCTXpsRVJESXpPREloTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e8a659836c04cf2f0e8f1539636740aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1bd6d5d7-6266-4c77-87dd-2d41f740c5dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e7", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e7", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e8", - "deletedDate": 1559859785, - "scheduledPurgeDate": 1567635785, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e8", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3fd65fc7300a4aea96a18109f8e76d0e9", - "deletedDate": 1559859786, - "scheduledPurgeDate": 1567635786, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3fd65fc7300a4aea96a18109f8e76d0e9", - "attributes": { - "enabled": true, - "created": 1559859785, - "updated": 1559859785, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/424334199", - "deletedDate": 1560272556, - "scheduledPurgeDate": 1568048556, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/424334199", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560272556, - "updated": 1560272556, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/464677825", - "deletedDate": 1560272715, - "scheduledPurgeDate": 1568048715, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/464677825", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560272715, - "updated": 1560272715, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/489076644", - "deletedDate": 1560272681, - "scheduledPurgeDate": 1568048681, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/489076644", - "attributes": { - "enabled": true, - "created": 1560272680, - "updated": 1560272680, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/498681213", - "deletedDate": 1560272435, - "scheduledPurgeDate": 1568048435, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/498681213", - "attributes": { - "enabled": true, - "created": 1560272435, - "updated": 1560272435, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c230", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c230", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c231", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c231", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2310", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2310", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2311", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2311", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f72cd84ef591fbef5e7c2ce0e17883a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6b61b6c-447b-4a87-913d-3ea99d557b2c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2312", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2312", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2313", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2313", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2314", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2314", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2315", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2315", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2316", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2316", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2317", - "deletedDate": 1559859844, - "scheduledPurgeDate": 1567635844, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2317", - "attributes": { - "enabled": true, - "created": 1559859844, - "updated": 1559859844, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2318", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2318", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2319", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2319", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c232", - "deletedDate": 1559859841, - "scheduledPurgeDate": 1567635841, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c232", - "attributes": { - "enabled": true, - "created": 1559859841, - "updated": 1559859841, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2320", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2320", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2321", - "deletedDate": 1559859845, - "scheduledPurgeDate": 1567635845, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2321", - "attributes": { - "enabled": true, - "created": 1559859845, - "updated": 1559859845, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2322", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2322", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2323", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2323", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpJekx6Z3hSREl6UWpKRU5FVkRORFF3TkRnNVJESXdOVVUzT0RkRk9Ea3lOREU1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpJekx6Z3hSREl6UWpKRU5FVkRORFF3TkRnNVJESXdOVVUzT0RkRk9Ea3lOREU1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fdc468a70b2f4706dd7a67422915b788", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f2594c3a-80be-4cb6-83cd-213d2de3589c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2324", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2324", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2325", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2325", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2326", - "deletedDate": 1559859846, - "scheduledPurgeDate": 1567635846, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2326", - "attributes": { - "enabled": true, - "created": 1559859846, - "updated": 1559859846, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2327", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2327", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2328", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2328", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2329", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2329", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c233", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c233", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2330", - "deletedDate": 1559859847, - "scheduledPurgeDate": 1567635847, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2330", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2331", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2331", - "attributes": { - "enabled": true, - "created": 1559859847, - "updated": 1559859847, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2332", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2332", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2333", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2333", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2334", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2334", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a4beee1e32328ed669ab8a883f4fed95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8a47d253-b720-42de-a968-b0f1d038a1fc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2335", - "deletedDate": 1559859848, - "scheduledPurgeDate": 1567635848, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2335", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2336", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2336", - "attributes": { - "enabled": true, - "created": 1559859848, - "updated": 1559859848, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2337", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2337", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2338", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2338", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2339", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2339", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c234", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c234", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2340", - "deletedDate": 1559859849, - "scheduledPurgeDate": 1567635849, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2340", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2341", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2341", - "attributes": { - "enabled": true, - "created": 1559859849, - "updated": 1559859849, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2342", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2342", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2343", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2343", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2344", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2344", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2345", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2345", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2346", - "deletedDate": 1559859850, - "scheduledPurgeDate": 1567635850, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2346", - "attributes": { - "enabled": true, - "created": 1559859850, - "updated": 1559859850, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpRMkwwSkVNRFZGUWpsQ016VTNOalEyUmtVNU1EWTFOa0ZDTVRJMlFqSkRNemN5SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpRMkwwSkVNRFZGUWpsQ016VTNOalEyUmtVNU1EWTFOa0ZDTVRJMlFqSkRNemN5SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fa91720b42a2437bd1e51a178dacd248", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3507", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e05655b8-a791-44d0-827b-f65ff7e8cc08", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2347", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2347", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2348", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2348", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c2349", - "deletedDate": 1559859851, - "scheduledPurgeDate": 1567635851, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c2349", - "attributes": { - "enabled": true, - "created": 1559859851, - "updated": 1559859851, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c235", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c235", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c236", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c236", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c237", - "deletedDate": 1559859842, - "scheduledPurgeDate": 1567635842, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c237", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c238", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c238", - "attributes": { - "enabled": true, - "created": 1559859842, - "updated": 1559859842, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/4bba913e3c4c42cda38c8bf9ebcf2c239", - "deletedDate": 1559859843, - "scheduledPurgeDate": 1567635843, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/4bba913e3c4c42cda38c8bf9ebcf2c239", - "attributes": { - "enabled": true, - "created": 1559859843, - "updated": 1559859843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/685908836", - "deletedDate": 1560274301, - "scheduledPurgeDate": 1568050301, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/685908836", - "attributes": { - "enabled": true, - "created": 1560274279, - "updated": 1560274279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f3c1a4c4dfba757092369483807d078d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3631", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5bc0b4ef-85a3-4ec1-8a70-d490aadc8f9c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/775828049", - "deletedDate": 1560272727, - "scheduledPurgeDate": 1568048727, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/775828049", - "attributes": { - "enabled": true, - "created": 1560272726, - "updated": 1560272727, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/785331417", - "deletedDate": 1560273155, - "scheduledPurgeDate": 1568049155, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/785331417", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560273155, - "updated": 1560273155, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/822148868", - "deletedDate": 1560272524, - "scheduledPurgeDate": 1568048524, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/822148868", - "attributes": { - "enabled": true, - "created": 1560272524, - "updated": 1560272524, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680635", - "deletedDate": 1559860070, - "scheduledPurgeDate": 1567636070, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680635", - "attributes": { - "enabled": true, - "created": 1559860070, - "updated": 1559860070, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680636", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680636", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680637", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680637", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680638", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680638", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680639", - "deletedDate": 1559860071, - "scheduledPurgeDate": 1567636071, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680639", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680640", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680640", - "attributes": { - "enabled": true, - "created": 1559860071, - "updated": 1559860071, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRRVGsxUVRVMFJVWXhNelEwUXpZeU9EZzNSRGd6TlRZeVJqazNOamd3TmpRd0x6QkJOVVpGT1VNeE9UVXdNalEyT0RjNU1VWkNSalZFUkVJeE5EbEVOakJDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRRVGsxUVRVMFJVWXhNelEwUXpZeU9EZzNSRGd6TlRZeVJqazNOamd3TmpRd0x6QkJOVVpGT1VNeE9UVXdNalEyT0RjNU1VWkNSalZFUkVJeE5EbEVOakJDSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b737d28dbc84dce5737bd24d18bf00bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0991d16e-8f68-465c-ba09-42185c4e2f81", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680641", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680641", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680642", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680642", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680643", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680643", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680644", - "deletedDate": 1559860072, - "scheduledPurgeDate": 1567636072, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680644", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680645", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680645", - "attributes": { - "enabled": true, - "created": 1559860072, - "updated": 1559860072, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680646", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680646", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680647", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680647", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680648", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680648", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8a95a54ef1344c62887d83562f97680649", - "deletedDate": 1559860073, - "scheduledPurgeDate": 1567636073, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8a95a54ef1344c62887d83562f97680649", - "attributes": { - "enabled": true, - "created": 1559860073, - "updated": 1559860073, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e47", - "deletedDate": 1559860119, - "scheduledPurgeDate": 1567636119, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e47", - "attributes": { - "enabled": true, - "created": 1559860119, - "updated": 1559860119, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e48", - "deletedDate": 1559860119, - "scheduledPurgeDate": 1567636119, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e48", - "attributes": { - "enabled": true, - "created": 1559860119, - "updated": 1559860119, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8de5d6c7972a475bb5b4a3e85155da2e49", - "deletedDate": 1559860120, - "scheduledPurgeDate": 1567636120, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8de5d6c7972a475bb5b4a3e85155da2e49", - "attributes": { - "enabled": true, - "created": 1559860120, - "updated": 1559860120, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9bc442d8f98e2bdb011c686baef7c253", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "83acdb47-cca9-4576-bc9e-740e44c20bec", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe10", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe10", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe11", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe11", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe12", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe12", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe13", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe13", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe14", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe14", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe15", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe15", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe16", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe16", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe17", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe17", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe18", - "deletedDate": 1559859194, - "scheduledPurgeDate": 1567635194, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe18", - "attributes": { - "enabled": true, - "created": 1559859194, - "updated": 1559859194, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe19", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe19", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe2", - "deletedDate": 1559859191, - "scheduledPurgeDate": 1567635191, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe2", - "attributes": { - "enabled": true, - "created": 1559859191, - "updated": 1559859191, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe20", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe20", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe21", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe21", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRJeEwwVkRSak0zTlROQ1EwUXlNRFF3UkVNNVJFSTJNell6UWpsRU5VTTFSVFE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRJeEwwVkRSak0zTlROQ1EwUXlNRFF3UkVNNVJFSTJNell6UWpsRU5VTTFSVFE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "bb898cdd1b7507c4bfe4803e0d235cd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7b5b5a96-80a2-43f2-98d5-0686d0e854cb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe22", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe22", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe23", - "deletedDate": 1559859195, - "scheduledPurgeDate": 1567635195, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe23", - "attributes": { - "enabled": true, - "created": 1559859195, - "updated": 1559859195, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe24", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe24", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe25", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe25", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe26", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe26", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe27", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe27", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe28", - "deletedDate": 1559859196, - "scheduledPurgeDate": 1567635196, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe28", - "attributes": { - "enabled": true, - "created": 1559859196, - "updated": 1559859196, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe29", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe29", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe3", - "deletedDate": 1559859191, - "scheduledPurgeDate": 1567635191, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe3", - "attributes": { - "enabled": true, - "created": 1559859191, - "updated": 1559859191, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe30", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe30", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe31", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe31", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe32", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe32", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3eabd7366cb993fff60bb56754792e7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2c0bc28c-d592-4836-9a61-94d1187a46ed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe33", - "deletedDate": 1559859197, - "scheduledPurgeDate": 1567635197, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe33", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe34", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe34", - "attributes": { - "enabled": true, - "created": 1559859197, - "updated": 1559859197, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe35", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe35", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe36", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe36", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe37", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe37", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe38", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe38", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe39", - "deletedDate": 1559859198, - "scheduledPurgeDate": 1567635198, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe39", - "attributes": { - "enabled": true, - "created": 1559859198, - "updated": 1559859198, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe4", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe4", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe40", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe40", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe41", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe41", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe42", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe42", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe43", - "deletedDate": 1559859199, - "scheduledPurgeDate": 1567635199, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe43", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe44", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe44", - "attributes": { - "enabled": true, - "created": 1559859199, - "updated": 1559859199, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRRMEwwVkVPRUl5TURreU1VTXpRalE1UkVJNU1EY3lNa1pETnprM05ERkdSRVUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRRMEwwVkVPRUl5TURreU1VTXpRalE1UkVJNU1EY3lNa1pETnprM05ERkdSRVUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8b707eb84436bd477ebcdba9799c1edd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3923", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fb9fad6b-0cd6-44f2-bc2e-965b957c593b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe45", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe45", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe46", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe46", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe47", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe47", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe48", - "deletedDate": 1559859200, - "scheduledPurgeDate": 1567635200, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe48", - "attributes": { - "enabled": true, - "created": 1559859200, - "updated": 1559859200, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe49", - "deletedDate": 1559859201, - "scheduledPurgeDate": 1567635201, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe49", - "attributes": { - "enabled": true, - "created": 1559859201, - "updated": 1559859201, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe5", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe5", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe6", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe6", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe7", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe7", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe8", - "deletedDate": 1559859192, - "scheduledPurgeDate": 1567635192, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe8", - "attributes": { - "enabled": true, - "created": 1559859192, - "updated": 1559859192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/8ff0883120e64d67a054013b9ad5d2fe9", - "deletedDate": 1559859193, - "scheduledPurgeDate": 1567635193, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/8ff0883120e64d67a054013b9ad5d2fe9", - "attributes": { - "enabled": true, - "created": 1559859193, - "updated": 1559859193, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "d63595bf834c709a8df5c569655cb245", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4170", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "40ea052c-2553-49c8-a53e-15d30eadc08a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/929589906", - "deletedDate": 1560273758, - "scheduledPurgeDate": 1568049758, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/929589906", - "attributes": { - "enabled": true, - "created": 1560273757, - "updated": 1560273757, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534780", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534780", - "attributes": { - "enabled": true, - "created": 1560272641, - "updated": 1560272641, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534781", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534781", - "attributes": { - "enabled": true, - "created": 1560272641, - "updated": 1560272641, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347810", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347810", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347811", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347811", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347812", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347812", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347813", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347813", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347814", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347814", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347815", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347815", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347816", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347816", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347817", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347817", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347818", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347818", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3hPQzh3TlVaRU1qaEZPRGMxUVRRME5UUkVPVFl6UVVaRU1qZ3pNME13T0RWQlJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3hPQzh3TlVaRU1qaEZPRGMxUVRRME5UUkVPVFl6UVVaRU1qZ3pNME13T0RWQlJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8e8504b6d1b3f19c90edbffc90551a59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a5fb5c4-8479-4b91-a6e8-e659f6cb5afc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347819", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347819", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534782", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534782", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347820", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347820", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347821", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347821", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347822", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347822", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347823", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347823", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347824", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347824", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347825", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347825", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347826", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347826", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347827", - "deletedDate": 1560272661, - "scheduledPurgeDate": 1568048661, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347827", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347828", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347828", - "attributes": { - "enabled": true, - "created": 1560272643, - "updated": 1560272643, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347829", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347829", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "bea7d7ed58433430e3fffe407fdd5722", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "527f30fa-1628-4898-ae53-4724927b1ba5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534783", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534783", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347830", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347830", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347831", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347831", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347832", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347832", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347833", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347833", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347834", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347834", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347835", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347835", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347836", - "deletedDate": 1560272662, - "scheduledPurgeDate": 1568048662, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347836", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347837", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347837", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347838", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347838", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347839", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347839", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534784", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534784", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347840", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347840", - "attributes": { - "enabled": true, - "created": 1560272644, - "updated": 1560272644, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56ZzBNQzlHUlVFek0wUkNRemswUXpNME0wTXhRa1k0UkVJMFFUVkJSakEzUmtRMVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56ZzBNQzlHUlVFek0wUkNRemswUXpNME0wTXhRa1k0UkVJMFFUVkJSakEzUmtRMVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "75f396098f16ee2af944455ec49ee038", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e568676-8c2b-4a37-84a9-bc25f024452f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347841", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347841", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347842", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347842", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347843", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347843", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347844", - "deletedDate": 1560272663, - "scheduledPurgeDate": 1568048663, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347844", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347845", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347845", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347846", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347846", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347847", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347847", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347848", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347848", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/94555347849", - "deletedDate": 1560272664, - "scheduledPurgeDate": 1568048664, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/94555347849", - "attributes": { - "enabled": true, - "created": 1560272645, - "updated": 1560272645, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534785", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534785", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534786", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534786", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534787", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534787", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8d7c6bdbf4b45e01d451aab3d25b71b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4170", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e25fad63-7149-4a58-afe4-8530e2937316", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534788", - "deletedDate": 1560272659, - "scheduledPurgeDate": 1568048659, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534788", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9455534789", - "deletedDate": 1560272660, - "scheduledPurgeDate": 1568048660, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9455534789", - "attributes": { - "enabled": true, - "created": 1560272642, - "updated": 1560272642, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894790", - "deletedDate": 1560272462, - "scheduledPurgeDate": 1568048462, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894790", - "attributes": { - "enabled": true, - "created": 1560272462, - "updated": 1560272462, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894791", - "deletedDate": 1560272462, - "scheduledPurgeDate": 1568048462, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894791", - "attributes": { - "enabled": true, - "created": 1560272462, - "updated": 1560272462, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947910", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947910", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947911", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947911", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947912", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947912", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947913", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947913", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947914", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947914", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947915", - "deletedDate": 1559864532, - "scheduledPurgeDate": 1567640532, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947915", - "attributes": { - "enabled": true, - "created": 1559864532, - "updated": 1559864532, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947916", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947916", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947917", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947917", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3hOeTlGUmpZeU5UQkZSalEzTlVZME5UUkVPRGREUlRrNVJUTkdNRUkyUWtSRU9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3hOeTlGUmpZeU5UQkZSalEzTlVZME5UUkVPRGREUlRrNVJUTkdNRUkyUWtSRU9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "faf29d96a4625e42adb9c4ff12d17045", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a3b506e7-2822-4615-a573-d9c5bd9d705c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947918", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947918", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947919", - "deletedDate": 1559864533, - "scheduledPurgeDate": 1567640533, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947919", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894792", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894792", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947920", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947920", - "attributes": { - "enabled": true, - "created": 1559864533, - "updated": 1559864533, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947921", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947921", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947922", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947922", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947923", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947923", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947924", - "deletedDate": 1559864534, - "scheduledPurgeDate": 1567640534, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947924", - "attributes": { - "enabled": true, - "created": 1559864534, - "updated": 1559864534, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947925", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947925", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947926", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947926", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947927", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947927", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947928", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947928", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1365c61fc961156d9495a1c5e4771b9e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "db49d08a-080f-4c9d-abe1-15cf937b5297", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947929", - "deletedDate": 1559864535, - "scheduledPurgeDate": 1567640535, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947929", - "attributes": { - "enabled": true, - "created": 1559864535, - "updated": 1559864535, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894793", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894793", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947930", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947930", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947931", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947931", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947932", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947932", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947933", - "deletedDate": 1559864536, - "scheduledPurgeDate": 1567640536, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947933", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947934", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947934", - "attributes": { - "enabled": true, - "created": 1559864536, - "updated": 1559864536, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947935", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947935", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947936", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947936", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947937", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947937", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947938", - "deletedDate": 1559864537, - "scheduledPurgeDate": 1567640537, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947938", - "attributes": { - "enabled": true, - "created": 1559864537, - "updated": 1559864537, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947939", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947939", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894794", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894794", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azBMME0yTmpkRE16VTRPVU5DTkRRek0wVkNORVV4T0Rrd00wTTFPRGxEUVRGRklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azBMME0yTmpkRE16VTRPVU5DTkRRek0wVkNORVV4T0Rrd00wTTFPRGxEUVRGRklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "26c792d2e5ab36d5281de0fb2f024b02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4114", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3520fe2e-f10c-4e01-b8a9-e8a832f4db01", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947940", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947940", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947941", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947941", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947942", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947942", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947943", - "deletedDate": 1559864538, - "scheduledPurgeDate": 1567640538, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947943", - "attributes": { - "enabled": true, - "created": 1559864538, - "updated": 1559864538, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947944", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947944", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947945", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947945", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947946", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947946", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947947", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947947", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947948", - "deletedDate": 1559864539, - "scheduledPurgeDate": 1567640539, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947948", - "attributes": { - "enabled": true, - "created": 1559864539, - "updated": 1559864539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/96678947949", - "deletedDate": 1559864540, - "scheduledPurgeDate": 1567640540, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/96678947949", - "attributes": { - "enabled": true, - "created": 1559864540, - "updated": 1559864540, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894795", - "deletedDate": 1559864530, - "scheduledPurgeDate": 1567640530, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894795", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894796", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894796", - "attributes": { - "enabled": true, - "created": 1559864530, - "updated": 1559864530, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0c9465e05df5cc5230dc65cd037d7936", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5051", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d05aba17-3465-4744-8cf9-5d8b3d322763", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894797", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894797", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894798", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894798", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/9667894799", - "deletedDate": 1559864531, - "scheduledPurgeDate": 1567640531, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/9667894799", - "attributes": { - "enabled": true, - "created": 1559864531, - "updated": 1559864531, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/969253067", - "deletedDate": 1560207326, - "scheduledPurgeDate": 1567983326, - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/969253067", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1560207325, - "updated": 1560207325, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd10", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd10", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd11", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd11", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd12", - "deletedDate": 1559860035, - "scheduledPurgeDate": 1567636035, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd12", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd13", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd13", - "attributes": { - "enabled": true, - "created": 1559860035, - "updated": 1559860035, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd14", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd14", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd15", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd15", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd16", - "deletedDate": 1559860036, - "scheduledPurgeDate": 1567636036, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd16", - "attributes": { - "enabled": true, - "created": 1559860036, - "updated": 1559860036, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd17", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd17", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd18", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd18", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRFNEwwSkNRVFV5UkRReVJqQkJNRFF4UkVWQk5UY3hORVZCTXpkQk1qWXdOMFJHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRFNEwwSkNRVFV5UkRReVJqQkJNRFF4UkVWQk5UY3hORVZCTXpkQk1qWXdOMFJHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7f2c269d4a093999f02feb43e972e591", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4714", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e729c8e4-3645-4cf1-ac8a-94c9cd7afb84", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd19", - "deletedDate": 1559860037, - "scheduledPurgeDate": 1567636037, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd19", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd20", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd20", - "attributes": { - "enabled": true, - "created": 1559860037, - "updated": 1559860037, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd21", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd21", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd22", - "deletedDate": 1559860038, - "scheduledPurgeDate": 1567636038, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd22", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd23", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd23", - "attributes": { - "enabled": true, - "created": 1559860038, - "updated": 1559860038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd24", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd24", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd25", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd25", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd26", - "deletedDate": 1559860039, - "scheduledPurgeDate": 1567636039, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd26", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd27", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd27", - "attributes": { - "enabled": true, - "created": 1559860039, - "updated": 1559860039, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd28", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd28", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd29", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd29", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd30", - "deletedDate": 1559860040, - "scheduledPurgeDate": 1567636040, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd30", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7fe59e490ee275a940fbf6cf7f0832ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "655620b3-c080-4aff-a407-e1995923ee71", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd31", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd31", - "attributes": { - "enabled": true, - "created": 1559860040, - "updated": 1559860040, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd32", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd32", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd33", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd33", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd34", - "deletedDate": 1559860041, - "scheduledPurgeDate": 1567636041, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd34", - "attributes": { - "enabled": true, - "created": 1559860041, - "updated": 1559860041, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd35", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd35", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd36", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd36", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd37", - "deletedDate": 1559860042, - "scheduledPurgeDate": 1567636042, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd37", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd38", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd38", - "attributes": { - "enabled": true, - "created": 1559860042, - "updated": 1559860042, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd39", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd39", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd4", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd4", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd40", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd40", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd41", - "deletedDate": 1559860043, - "scheduledPurgeDate": 1567636043, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd41", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd42", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd42", - "attributes": { - "enabled": true, - "created": 1559860043, - "updated": 1559860043, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRReUx6VkdRa1V5T1VSRU1VVkJOelF5T0RjNVJqWTJORVkxUmpNMk5FTkVSVFV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRReUx6VkdRa1V5T1VSRU1VVkJOelF5T0RjNVJqWTJORVkxUmpNMk5FTkVSVFV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "095daaa3ccd695f8cb5b1cc5720ee2bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4704", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac4367d1-68ed-4b81-8e89-44aabb7b7229", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd43", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd43", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd44", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd44", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd45", - "deletedDate": 1559860044, - "scheduledPurgeDate": 1567636044, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd45", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd46", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd46", - "attributes": { - "enabled": true, - "created": 1559860044, - "updated": 1559860044, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd47", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd47", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd48", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd48", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd49", - "deletedDate": 1559860045, - "scheduledPurgeDate": 1567636045, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd49", - "attributes": { - "enabled": true, - "created": 1559860045, - "updated": 1559860045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd5", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd5", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd6", - "deletedDate": 1559860033, - "scheduledPurgeDate": 1567636033, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd6", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd7", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd7", - "attributes": { - "enabled": true, - "created": 1559860033, - "updated": 1559860033, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd8", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd8", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/e065d582866148a1ab6ac0c167b0c6fd9", - "deletedDate": 1559860034, - "scheduledPurgeDate": 1567636034, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/e065d582866148a1ab6ac0c167b0c6fd9", - "attributes": { - "enabled": true, - "created": 1559860034, - "updated": 1559860034, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6484d4f6fa978e537cb73f0e54cab9e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "914aed3e-1788-4cc4-9714-25a5d603b2c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a210", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a210", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a211", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a211", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a212", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a212", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a213", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a213", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a214", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a214", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a215", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a215", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a216", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a216", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a217", - "deletedDate": 1559859580, - "scheduledPurgeDate": 1567635580, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a217", - "attributes": { - "enabled": true, - "created": 1559859580, - "updated": 1559859580, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a218", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a218", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a219", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a219", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a22", - "deletedDate": 1559859577, - "scheduledPurgeDate": 1567635577, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a22", - "attributes": { - "enabled": true, - "created": 1559859577, - "updated": 1559859577, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a220", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a220", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a221", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a221", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpJeEx6TXdRVVEzTkRZek9ERTVOVFEzTWpWQ01UQXpSRUkxTnpBME1qbEVOemd3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpJeEx6TXdRVVEzTkRZek9ERTVOVFEzTWpWQ01UQXpSRUkxTnpBME1qbEVOemd3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3e9f3ffddc147cbba64fb387f2e30231", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4712", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c85ea9ef-f9ec-44e9-a29a-8f4f8f7b1fb1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a222", - "deletedDate": 1559859581, - "scheduledPurgeDate": 1567635581, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a222", - "attributes": { - "enabled": true, - "created": 1559859581, - "updated": 1559859581, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a223", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a223", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a224", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a224", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a225", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a225", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a226", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a226", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a227", - "deletedDate": 1559859582, - "scheduledPurgeDate": 1567635582, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a227", - "attributes": { - "enabled": true, - "created": 1559859582, - "updated": 1559859582, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a228", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a228", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a229", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a229", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a23", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a23", - "attributes": { - "enabled": true, - "created": 1559859577, - "updated": 1559859577, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a230", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a230", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a231", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a231", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a232", - "deletedDate": 1559859583, - "scheduledPurgeDate": 1567635583, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a232", - "attributes": { - "enabled": true, - "created": 1559859583, - "updated": 1559859583, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "abd83818cd83a91356cf8c1e8dea4100", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5137", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b21e3430-1809-4868-a217-48fb4f03ee69", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a233", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a233", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a234", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a234", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a235", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a235", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a236", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a236", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a237", - "deletedDate": 1559859584, - "scheduledPurgeDate": 1567635584, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a237", - "attributes": { - "enabled": true, - "created": 1559859584, - "updated": 1559859584, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a238", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a238", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a239", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a239", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a24", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a24", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a240", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a240", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a241", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a241", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a242", - "deletedDate": 1559859585, - "scheduledPurgeDate": 1567635585, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a242", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a243", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a243", - "attributes": { - "enabled": true, - "created": 1559859585, - "updated": 1559859585, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a244", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a244", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpRMEx6Z3dOa1pDTmtZd01UaEdNalJGUWtWQ1FqaEVRMFJFTXpFd01qSkZSRVJESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpRMEx6Z3dOa1pDTmtZd01UaEdNalJGUWtWQ1FqaEVRMFJFTXpFd01qSkZSRVJESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "32c834a1a36e1aa91807be4746cc9c98", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3677", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e1273232-5b2a-4e89-89b4-89c62db2f811", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a245", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a245", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a246", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a246", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a247", - "deletedDate": 1559859586, - "scheduledPurgeDate": 1567635586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a247", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a248", - "deletedDate": 1559859587, - "scheduledPurgeDate": 1567635587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a248", - "attributes": { - "enabled": true, - "created": 1559859586, - "updated": 1559859586, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a249", - "deletedDate": 1559859587, - "scheduledPurgeDate": 1567635587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a249", - "attributes": { - "enabled": true, - "created": 1559859587, - "updated": 1559859587, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a25", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a25", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a26", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a26", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a27", - "deletedDate": 1559859578, - "scheduledPurgeDate": 1567635578, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a27", - "attributes": { - "enabled": true, - "created": 1559859578, - "updated": 1559859578, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a28", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a28", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/f52ef6a0c7d3454894f7db6ff606f1a29", - "deletedDate": 1559859579, - "scheduledPurgeDate": 1567635579, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/f52ef6a0c7d3454894f7db6ff606f1a29", - "attributes": { - "enabled": true, - "created": 1559859579, - "updated": 1559859579, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": null - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364970?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2b22cd3e9b3b97cc32d282f15d460c56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8007fd84-476d-4e0d-91b8-d83ce1333093", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364971?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "20b5f4a76229d0439d437d63455b0518", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4e7319f7-d004-4274-91e5-f767e491523b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364972?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2170485fed7d202ee7fd3f2ea048740c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9137fbe4-cbcd-449a-843b-06a21d321961", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364973?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "99c7ee45b147dc068a528ef71e6852d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "51abca34-7f13-468f-bba2-511d1647b546", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364974?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364976?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982de-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "149169cdead5bad9c595392c23142f55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a91dfd38-43f1-46ff-81a0-bed300c73453", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364975?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "561e71cf6b94aed14194962a5f37027e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "740f8f6b-0492-4617-9244-01533e839d50", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364976?api-version=7.0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "366168aa5fb65a36140dd3b178dab975", + "x-ms-client-request-id": "f3c1a4c4dfba757092369483807d078d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2572f5b7-e898-486e-96eb-a7aa5604e3d9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "886f8225-8e93-4eff-9255-84383419a16d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364977?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364977?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982df-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ac273922fb4a614298e3d34154af5a8e", + "x-ms-client-request-id": "b737d28dbc84dce5737bd24d18bf00bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "27046245-e046-4095-83b5-d8a4e8e11b6c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c1751143-f8b3-4e7f-8d13-754ca3c7328d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364978?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364978?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ba81ba93f9b3709e3bc34286981f3567", + "x-ms-client-request-id": "9bc442d8f98e2bdb011c686baef7c253", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:16 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2089658f-8c01-4220-b326-66497abe45fb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b1fc9624-ca7a-40fd-928d-834b929ba635", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19164364979?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19164364979?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "260721da550faf3425ff9dd38cf40665", + "x-ms-client-request-id": "bb898cdd1b7507c4bfe4803e0d235cd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b0264e6-0d6c-4589-8dd7-9aa946b47c85", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "92b116db-9ae1-49df-af37-fd7e0feb1978", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649710?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649710?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "bd1e44b2fe5929c19ab77187b9bbc978", + "x-ms-client-request-id": "3eabd7366cb993fff60bb56754792e7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ccdc2d3-cc50-4665-ac44-3cc651d94a7a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8e2cd6ff-0028-4307-b178-eff27a8cf772", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649711?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649711?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "32666bad34a73d7f86d295b35bcbe446", + "x-ms-client-request-id": "8b707eb84436bd477ebcdba9799c1edd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ae477a8-ab33-493d-b0dd-d9a0e56bd9a4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "54f2a06a-ac37-4f15-99f4-6022de7ecb48", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649712?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649712?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "53d4dcbd7800dc0e5fde8b58e3adf569", + "x-ms-client-request-id": "d63595bf834c709a8df5c569655cb245", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d9058243-9bb3-4b53-9663-6b4a260b5bbf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d87b45d-593d-4e92-babd-51806e257583", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649713?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649713?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "20252436d38d7dbec5e13686690ececf", + "x-ms-client-request-id": "8e8504b6d1b3f19c90edbffc90551a59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0ef672c7-2b1c-42dd-9203-068d12df7149", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "60582322-3af7-4cb3-947d-a6ce1529457a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649714?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649714?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dcc92bd275e735785d8ad2c9a92659d9", + "x-ms-client-request-id": "bea7d7ed58433430e3fffe407fdd5722", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "51495ba2-ebfd-49d6-8cfc-881eebb5f90a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e80c5c4b-f23b-4dc3-8e87-35163cbb38ff", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649715?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649715?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "367c2bdcc3a6e9b81e568d1f41877351", + "x-ms-client-request-id": "75f396098f16ee2af944455ec49ee038", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "04aef9fa-4398-4695-ac23-c8fe8970299e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d6648892-8af7-4c1d-952e-b01458f41796", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649716?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649716?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b885bb1018e3c182acf0c20300f4d49f", + "x-ms-client-request-id": "8d7c6bdbf4b45e01d451aab3d25b71b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a01acddc-ce0f-42c2-bed5-32416fdb9837", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2b227e55-93a2-4504-9aa3-2f7336f12193", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649717?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649717?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982e9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3daa5d8797910e2972e0bd90e758f3d6", + "x-ms-client-request-id": "faf29d96a4625e42adb9c4ff12d17045", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4218c387-4d74-4c01-adcd-b7a0893e0ad6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ba366d0d-22f2-4d07-938b-278ddf7b015a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649718?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649718?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ea-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "edb88117a1a0c3f6a9bb89b500b5e829", + "x-ms-client-request-id": "1365c61fc961156d9495a1c5e4771b9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:17 GMT", + "Date": "Tue, 06 Aug 2019 18:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d97ea77e-1309-4be2-82fe-d38abb7e90c7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2479d2bb-6139-4552-8cd2-09a2722226cb", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649719?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649719?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982eb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e397ee8235dd78bf927645025bf1d953", + "x-ms-client-request-id": "26c792d2e5ab36d5281de0fb2f024b02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d9162013-8afd-4bb0-9c3d-43c7df8a8a43", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "74c3cd86-a2d8-44b0-b948-80f9fa3b662c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649720?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649720?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ec-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7febecfce63be6fe67e693d50d730ebd", + "x-ms-client-request-id": "0c9465e05df5cc5230dc65cd037d7936", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b7b6dff5-5adf-421a-9841-97865391d389", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "89dedc86-5df8-4d7f-bd49-90e8122c8866", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649721?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649721?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ed-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f90e93f80fc0e1f8c1405a2a5bf368b8", + "x-ms-client-request-id": "7f2c269d4a093999f02feb43e972e591", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "101f748b-be39-425f-9066-144219d23814", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e31a0b1f-e91a-49f4-a296-06c206a309ad", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649722?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649722?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ee-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14b935e268c99bedf0b17cf6a2ea6a1f", + "x-ms-client-request-id": "7fe59e490ee275a940fbf6cf7f0832ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9fadbfd4-fba1-4ce3-9627-ced8d957b61e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7d62d6e4-3a9f-4976-9586-d9062eb065cc", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649723?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649723?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ef-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c7098868dfe3ed93f40abdfb8cd38a73", + "x-ms-client-request-id": "095daaa3ccd695f8cb5b1cc5720ee2bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cdf17d28-987b-4a3a-a2cc-39022de6ce07", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "21708f75-ece9-4947-8dc2-07bb28e2d8b3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649724?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649724?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d7f2db7df9ba8ff3a672090f92013fd7", + "x-ms-client-request-id": "6484d4f6fa978e537cb73f0e54cab9e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b69ee0a5-4966-4f1c-ab0b-e36c05f2a4cd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b75aec42-0a6a-4a1a-9bc5-0ff4ae138d56", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649725?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649725?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d2c13bd5a1ea02d4a2cc20bfabf20f1c", + "x-ms-client-request-id": "3e9f3ffddc147cbba64fb387f2e30231", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0b586516-ae25-4420-96ed-24b8276c7b3b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ab85b1ef-7791-4d29-818f-6ca703168b89", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649726?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649726?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c779092692f76e65957a2071d6835af2", + "x-ms-client-request-id": "abd83818cd83a91356cf8c1e8dea4100", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b41c1caf-f7e1-40b4-86c6-120dbfb0c5d4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2883c7f5-9cdf-4cda-b422-9d4914fb530e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649727?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649727?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5026e5cab812dc8906f034eed933e4b3", + "x-ms-client-request-id": "32c834a1a36e1aa91807be4746cc9c98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "332db7cd-a96a-4e28-a966-2305a2f95389", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bbcfb8f9-cbca-4a38-b782-f6dd489cf17f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649728?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649728?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "89e8ec62778842e0d6523c6f80632c1f", + "x-ms-client-request-id": "1cf50db40ef22f642bf6e8454f9cefbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:18 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e31736c4-fe3c-4029-8f5c-32fd98bf8c2c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f1bfdf2c-8d46-4dca-8bab-5bfc4dadbf89", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649729?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649729?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c5f42d72bfcc6e0a7f9dc1075e769462", + "x-ms-client-request-id": "bee5b30ecf1b74c38ebd927c0fcb628a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dec27db2-0f35-4e06-bb8b-c0bb0f1cacca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d0e03fe-bd0d-4f58-b1fb-aea24d73010c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649730?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649730?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ea0e6d96d09b536905e37abf7b195ba2", + "x-ms-client-request-id": "7f69f33325f4930ecf980778bb64ca7b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "373ab473-3cf2-4a03-8673-efab51a413dd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "829df8ad-5b0c-41a3-933b-578e61b442f9", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649731?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649731?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ab7c15c31e3ea3e7e27909ebb6d9e45f", + "x-ms-client-request-id": "93390118dee6e57d4a808d347be8205f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "71e98164-fb36-4f61-8dd2-822bff740b37", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2abc4b7b-0961-4c8c-9dbf-52bd8e60a086", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649732?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649732?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "13d9dabd4254a183c4a1c0e8444af266", + "x-ms-client-request-id": "5b115d946f32e8c7a452ee83c84bb82a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "baa93010-43b5-4241-9786-60894bc41004", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "41653920-9916-4a8e-bfb7-9b71c38237ff", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649733?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649733?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982f9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "48431e41e8fa7723856b0721c67e9c2c", + "x-ms-client-request-id": "0d6316f3cf9254a47684357498da17e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5fff58cf-bcbe-4350-acf8-bb1f50837c21", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b4cb315f-2a32-42e6-b67d-134795ca4251", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649734?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649734?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982fa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a1011bfe473f814e92dae79c5dff5e98", + "x-ms-client-request-id": "5ee3a7786e52a8493a51ee93f0f91cfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fbb747ff-26fc-4026-ad19-00f19ddf6366", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8b97acec-a9eb-4a9d-8313-51a964d66ad5", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649735?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649735?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982fb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "98a9a3879c95d464b6618ee93a61db45", + "x-ms-client-request-id": "644062c71284c4cdb9bce5ae395250ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3cfe091f-fdfe-4b49-a8c9-8ffde60e723a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a5d73e48-5fbe-4a18-bf2e-0828a3ee3f2e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649736?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649736?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982fc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "29e994055048f926d0c1b52001871a86", + "x-ms-client-request-id": "210b063a5a6784d8cdbbd340e010647d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8936a89f-34b0-43a8-9c84-7a01808ec101", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2b25d1b0-bbfa-4bd9-870a-370c047bd15d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649737?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649737?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982fd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "229a6f0c04d56296b62cebdeb9644730", + "x-ms-client-request-id": "35ac3668b3996563d91fa595899b6fe7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab5eda1b-8bd6-4b5d-bb5e-a2e5363dc20d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1b31a0e7-7499-4bc0-a32f-71070ded340c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649738?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649738?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982fe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c997a2fe3515364f7dafc7d4e643d32e", + "x-ms-client-request-id": "e9592400fbee6d978abc96c93f8ce4a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:19 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7aa562a9-d09f-46a7-af66-5939c7327d69", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a7def96d-2c72-4584-aba5-cfe5b6d6f506", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649739?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649739?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42982ff-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cadc0847b9c70170fd87721c6548406b", + "x-ms-client-request-id": "024567581aa68731a3a54747b542fa32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0402c3c3-fb56-4118-9279-37593a281ad4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "340e2d89-e3a9-4339-9113-84176db358e2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649740?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649740?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298300-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5e22847a50efd7702063a5253cc27b73", + "x-ms-client-request-id": "bb40eb4b7bb66d8e9f3faadc1c99254c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e01c13e0-68c0-4bd5-a71f-524e359ef5be", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "42bd1e94-ba38-4ed8-bf44-327646058f68", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649741?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298301-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b196bc587c8845693196cc8dc232d135", + "x-ms-client-request-id": "213dfb3a6c55e541f3d24648b34fb748", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5bbc6e9b-fa31-47b2-b761-3e4b048aef89", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c806d948-8d4a-47ad-958e-683fb0f732f8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649742?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649742?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298302-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "62595c6f7421f73f9704aa63134bc53b", + "x-ms-client-request-id": "547d63c1284cdcf2d8d8636670546a09", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3e3c66ea-87f0-4695-9e1e-7b01ece988b8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f800e994-91ef-49d0-9dc9-5945d8a28d96", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649743?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649743?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298303-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a8c3ff0c8eb1fde21bdc2d5984e314ed", + "x-ms-client-request-id": "b90dfa7fd905dedda95ac8e43446b94f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ba223c58-0568-4fe2-9635-19d061bd80a3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7d50806-4f7c-44e2-9f11-82f813ef509c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649744?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649744?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298304-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dfb570921968e4527d9f1a83d20531e6", + "x-ms-client-request-id": "b81b6287d11c12000960487c09da759f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "568a293e-aae2-415e-afc4-57979355b289", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f52f19e3-8dd9-4a85-8cd0-4fcb4d9d019e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649745?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649745?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298305-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c38191d0286fe183795c464447e573b3", + "x-ms-client-request-id": "b8c83d67fe42e843869eaaf25f0da892", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "14e0ee57-961c-42c5-8c0d-8c19b46c1102", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "176f60f9-83bf-410a-93d5-7b867e59e97d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649746?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649746?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298306-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a3d1bcefe595f2d2addf2b12745f2b15", + "x-ms-client-request-id": "0ede131eb138aeedfafaafa49060d5ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c573b9ee-3bdd-43cf-8535-8578400ee787", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "01b2c6e1-e667-453a-ada8-eee25b6a99b2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649747?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649747?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298307-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f28846ab51626a7eecd4650cd20d9c97", + "x-ms-client-request-id": "f77d29e4017e890c1f33327d270eb2fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1a2a198a-584e-4514-89ea-f4e7c2c1a06b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6a3745fc-5d96-4eb6-8403-99a23f696047", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649748?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649748?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298308-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1593662c8d34eb51be8e1690fc716d1a", + "x-ms-client-request-id": "f55eb6b867fcb5664f1abe474e9e5825", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cdbd644a-5cca-47eb-8eec-0b94ff2642a4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3fc856a3-4e63-44a9-a230-1bbffbc0368b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/191643649749?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f191643649749?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298309-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "01983130805c9e513e67b7c07fc6209f", + "x-ms-client-request-id": "360ddbc9b08f1d140755ee057f6f86ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:49:20 GMT", + "Date": "Tue, 06 Aug 2019 18:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "becb9d5c-4300-488e-a36d-494f78c9ecb8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "91847e01-7851-4ccf-b8fa-08a31b8051e9", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "988226786" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecret.json index 93e946a6e327..a5d7c9378424 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/227959232?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298055-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "617380bea0fd1b10fc56511d2182c30a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "77ae3d59-5832-489f-b4f5-4412e11b5483", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298055-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "617380bea0fd1b10fc56511d2182c30a", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7ce0fb82-95c8-49cb-a284-612b1517e414", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9e622100-88c9-4523-981c-56f8704c2a21", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/227959232/8a4c2dc2981f46ce9a753e6eb75b5194", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232\u002fc1a0cdde49514aba81571d72aa365386", "attributes": { "enabled": true, - "created": 1560877014, - "updated": 1560877014, + "created": 1565114123, + "updated": 1565114123, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/227959232/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298056-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3a30498c23a2f82fc834a5514910b44e", "x-ms-return-client-request-id": "true" @@ -66,41 +109,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e5bf90b6-cca1-4d8f-a394-899fb3fb669c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "af135dea-b691-4a0b-ad1a-4b97c593a8aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/227959232/8a4c2dc2981f46ce9a753e6eb75b5194", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232\u002fc1a0cdde49514aba81571d72aa365386", "attributes": { "enabled": true, - "created": 1560877014, - "updated": 1560877014, + "created": 1565114123, + "updated": 1565114123, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/227959232?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298057-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "afe1f8df7cfd42f74a3a57a7ca32c78e", "x-ms-return-client-request-id": "true" @@ -110,69 +154,70 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:56:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "eee105c4-992c-48bd-bbe0-32dbf87b0869", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1c9a2399-5b6d-40cb-af34-ba88d4ee5265", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/227959232", - "deletedDate": 1560877014, - "scheduledPurgeDate": 1568653014, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/227959232/8a4c2dc2981f46ce9a753e6eb75b5194", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f227959232", + "deletedDate": 1565114123, + "scheduledPurgeDate": 1572890123, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f227959232\u002fc1a0cdde49514aba81571d72aa365386", "attributes": { "enabled": true, - "created": 1560877014, - "updated": 1560877014, + "created": 1565114123, + "updated": 1565114123, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/227959232?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f227959232?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429805e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e35b014cd9f1344af6124d5ab48a2d23", + "x-ms-client-request-id": "e135977664d38f9a21d1d1e15093bcb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:57:10 GMT", + "Date": "Tue, 06 Aug 2019 17:55:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "28cf58ad-729c-4b16-a186-13a10a12c04b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cd90fc7b-1cce-4dd7-9ea8-3829507427aa", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1916725693" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretAsync.json index 3e6a9114d8ee..804b4ef7605b 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/356061741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|429833c-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "63a0fde3489d23ca687d96b4a12a9997", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "38515e29-7626-4584-aab0-c68ee0e25042", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429833c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "63a0fde3489d23ca687d96b4a12a9997", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "62f575be-883c-409e-b9de-f28462df8591", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "85795385-54b9-4efc-8605-d551d8c2043c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/356061741/928b4e08c4ca4a84b2139f5076b3b7d7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741\u002f8e987e2cac3c4e65afb10a9bbabbba37", "attributes": { "enabled": true, - "created": 1560877074, - "updated": 1560877074, + "created": 1565114446, + "updated": 1565114446, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/356061741/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429833d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6ac1e399c27654cca787b87a3f3beef4", "x-ms-return-client-request-id": "true" @@ -66,41 +109,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f6c3432f-f22e-4d33-a3fc-f30f083f2a98", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "06be93ed-68e8-4cd7-ab45-b1d38ba67c52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/356061741/928b4e08c4ca4a84b2139f5076b3b7d7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741\u002f8e987e2cac3c4e65afb10a9bbabbba37", "attributes": { "enabled": true, - "created": 1560877074, - "updated": 1560877074, + "created": 1565114446, + "updated": 1565114446, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/356061741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429833e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "129b4a5bd8c0c1514d4d341547be8d96", "x-ms-return-client-request-id": "true" @@ -110,69 +154,70 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "58115195-d411-4ffc-bc75-10c9044ec6b0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8438d369-e098-4eb2-9c30-fb3aace0ff3c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/356061741", - "deletedDate": 1560877074, - "scheduledPurgeDate": 1568653074, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/356061741/928b4e08c4ca4a84b2139f5076b3b7d7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f356061741", + "deletedDate": 1565114447, + "scheduledPurgeDate": 1572890447, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f356061741\u002f8e987e2cac3c4e65afb10a9bbabbba37", "attributes": { "enabled": true, - "created": 1560877074, - "updated": 1560877074, + "created": 1565114446, + "updated": 1565114446, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/356061741?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f356061741?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298344-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6e1bd23e48033ec03938c313a463a555", + "x-ms-client-request-id": "86c01fcf6931c48419a4cf5f43de0305", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:58:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "712ed01b-437f-498e-8cb0-d5f1e1be942e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "88a35fde-b71d-46cd-89cc-88833b76efc3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "136455343" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExisting.json index b73cbe8ee4ed..a90ff40c4185 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/91945129/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f91945129\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|429819f-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "6caa8cff69c86b5229d23e692a8b05a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c5ad2849-2813-4985-b432-00e27353a2f1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f91945129\u002fversions?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429819f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6caa8cff69c86b5229d23e692a8b05a9", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:07:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a31982af-bcf1-41f4-b868-b38991915ab4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "37a17d22-f142-404c-addd-bf1758497b7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -40,7 +82,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "931485581" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExistingAsync.json index d92282a9651b..7a30f44b901b 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretVersionsNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/252426713/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f252426713\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298481-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "31a56d8951c3c14568c3bcd49315f318", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e867376e-7437-4cf3-a6ab-42296111edda", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f252426713\u002fversions?api-version=7.0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298481-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "31a56d8951c3c14568c3bcd49315f318", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:08:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ea2bfbd5-a688-494c-a367-9055b09c9002", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f58606aa-ab75-4614-866f-0fd979659391", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -40,7 +82,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1076164137" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersion.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersion.json index 501e9cefd144..97e7cf4801b2 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersion.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersion.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a0-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "cb1b9462f1c53c45825c928b1c1b1de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "561a21ee-569b-47bf-a1af-2d9f753f2339", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cb1b9462f1c53c45825c928b1c1b1de7", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "660b4a38-8fb2-44a0-9f01-4941046f84f8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "aa56b386-fbfd-40ac-b049-bd93de4f55e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/355140c5a2e44ae294619fc9e3f38766", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002f3e11549f325c4c7088105b3d792dae6e", "attributes": { "enabled": true, - "created": 1560877030, - "updated": 1560877030, + "created": 1565114227, + "updated": 1565114227, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "611f8f1186a323f4b17e4e6b492b2cf1", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d82e3c02-3755-4f01-b4f0-46d81bb4a06a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7c201b99-b60a-4f41-baa8-397a6ca98a17", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/c35fc1a31f9144c2877aa67b6ad4c31a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002ff29cebb77b0d463e982acd13a87d9655", "attributes": { "enabled": true, - "created": 1560877030, - "updated": 1560877030, + "created": 1565114227, + "updated": 1565114227, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a9df07cb14d210361fe36debddc425ea", "x-ms-return-client-request-id": "true" @@ -116,41 +160,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b16b1bcd-6e81-4adb-b90a-5b66b350f39b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b4a51197-225d-4bc1-961e-f130f2a79c97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/c0636fac3f69448ea99d98edc9a03d66", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002fd9c613476006419f9761e12b7d2f0478", "attributes": { "enabled": true, - "created": 1560877030, - "updated": 1560877030, + "created": 1565114227, + "updated": 1565114227, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/c35fc1a31f9144c2877aa67b6ad4c31a?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002ff29cebb77b0d463e982acd13a87d9655?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ddcc009a3ea9db099ff81a46a3d9f256", "x-ms-return-client-request-id": "true" @@ -160,41 +205,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "47b4a538-bcf4-4845-9f0f-66ebc660ca9a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8de8cfac-bed2-4fda-9f5d-33edf745e7db", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/c35fc1a31f9144c2877aa67b6ad4c31a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002ff29cebb77b0d463e982acd13a87d9655", "attributes": { "enabled": true, - "created": 1560877030, - "updated": 1560877030, + "created": 1565114227, + "updated": 1565114227, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "15c0a030743bfc14580e42bf190945ec", "x-ms-return-client-request-id": "true" @@ -204,69 +250,70 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:11 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0a159742-bee0-4720-8cad-bf3815f86415", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "55a2e050-9c65-42f7-a3cd-6bcf0b27e72a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1092159404", - "deletedDate": 1560877031, - "scheduledPurgeDate": 1568653031, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1092159404/c0636fac3f69448ea99d98edc9a03d66", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1092159404", + "deletedDate": 1565114227, + "scheduledPurgeDate": 1572890227, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1092159404\u002fd9c613476006419f9761e12b7d2f0478", "attributes": { "enabled": true, - "created": 1560877030, - "updated": 1560877030, + "created": 1565114227, + "updated": 1565114227, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1092159404?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1092159404?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981a8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cc2773422d02493d1ed9e3d1f877bbb1", + "x-ms-client-request-id": "03cdfca1084d48e7b4ab5e8ec9ac90b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:57:26 GMT", + "Date": "Tue, 06 Aug 2019 17:57:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4924abde-d5d8-4059-9292-edb37d12a290", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "67d7a3f3-1054-4489-9933-c30e2aa87974", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1930643264" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersionAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersionAsync.json index bbc023b37415..24684c2ed6a3 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersionAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretWithVersionAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298482-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "59bca3f3d26bc6f9f8b6201e529ec7d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9813297e-8fcc-4ad2-b4b2-cd5d6216e430", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298482-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "59bca3f3d26bc6f9f8b6201e529ec7d7", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c9c7fb33-1d3d-4cf2-bbe0-71e48ed3fe0a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "14da0cbd-7644-42bc-b660-129b1e9feda6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/10314a295b3d4d86a45d8de60d5e3283", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002fdc057b8e21ac453a997188e348f26f3f", "attributes": { "enabled": true, - "created": 1560877090, - "updated": 1560877090, + "created": 1565114523, + "updated": 1565114523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298483-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0f1245c9c34e8660e96b90c08b27b57b", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "61bb158b-4ae0-4b43-8273-48f810578311", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ad2e44c6-6747-4503-9fda-070b32f05155", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/78d9618ba49c4505a582a784518362b8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002f1cb3a4aea55340a2af96481073f2471d", "attributes": { "enabled": true, - "created": 1560877090, - "updated": 1560877090, + "created": 1565114523, + "updated": 1565114523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298484-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "03162fa6b091e9617855ec26a288cd99", "x-ms-return-client-request-id": "true" @@ -116,41 +160,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2cbf4575-1123-4974-b573-eb4f2bbdecfe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b20bb4da-9172-4288-839e-f251aa0941cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/070b9a7973604b0cb9f76015f99a4a6e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002fb1c885a33b354b9f8fbd749c52990eee", "attributes": { "enabled": true, - "created": 1560877090, - "updated": 1560877090, + "created": 1565114523, + "updated": 1565114523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/78d9618ba49c4505a582a784518362b8?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002f1cb3a4aea55340a2af96481073f2471d?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298485-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e04e732bc2e7306343366f0041393ad1", "x-ms-return-client-request-id": "true" @@ -160,41 +205,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:09 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9c2fe8ec-7841-42d3-afcc-b7bada036857", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b1e4800f-b178-4953-a2d8-0528533a3ed1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/78d9618ba49c4505a582a784518362b8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002f1cb3a4aea55340a2af96481073f2471d", "attributes": { "enabled": true, - "created": 1560877090, - "updated": 1560877090, + "created": 1565114523, + "updated": 1565114523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298486-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2378a400c3881846e42896f8d739e361", "x-ms-return-client-request-id": "true" @@ -204,43 +250,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "719965c1-5da3-4547-a1fc-477628468142", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "775fb759-9cbb-4744-bf3d-abef980b9a1f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1043092913", - "deletedDate": 1560877090, - "scheduledPurgeDate": 1568653090, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1043092913/070b9a7973604b0cb9f76015f99a4a6e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1043092913", + "deletedDate": 1565114524, + "scheduledPurgeDate": 1572890524, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1043092913\u002fb1c885a33b354b9f8fbd749c52990eee", "attributes": { "enabled": true, - "created": 1560877090, - "updated": 1560877090, + "created": 1565114523, + "updated": 1565114523, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1043092913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1043092913?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429848b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3208b58b5cfef89a21faed7b536d6441", "x-ms-return-client-request-id": "true" @@ -249,24 +296,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:58:24 GMT", + "Date": "Tue, 06 Aug 2019 18:02:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49db560e-c132-4680-be33-2d8b2acf6dfc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e439fa07-f8ee-4423-9625-3fc58678f7b3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1592839813" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecrets.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecrets.json index dcc636f56631..d64d74ab45fc 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecrets.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecrets.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503260?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298060-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "e9753b802252c07e1678f835066b6c2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e35ff579-cccf-45c6-941b-4ede03284b5d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298060-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e9753b802252c07e1678f835066b6c2f", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:01 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "caccb040-bd80-438b-ba38-1eed8aa0b3c0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ef46a9b8-0ae5-4baa-841b-c961c1c22f68", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503260/d4e9632c8faf4ba08f344605e3d4d8d7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260\u002f49b91a01f76c45e4afa3f5ad55be736c", "attributes": { "enabled": true, - "created": 1560804301, - "updated": 1560804301, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503261?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503261?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298061-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cd191cfec6183917b119adac0d0f39b1", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b4dc2e92-dbca-46ea-ad16-37bc79a75a11", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "81c6525f-f674-46dd-9538-3ffffcff19be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503261/5434e57fae674a79810e549180e99d4a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503261\u002f56ae371959084e6490618ee05d319427", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503262?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503262?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298062-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "00ede30d70b376b3d1766fafb6edf47f", "x-ms-return-client-request-id": "true" @@ -116,42 +160,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b5356712-a09a-4ab2-98c5-1e1b54193cea", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13f708f9-02ce-46f6-ae4b-91bbe220d784", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503262/0c5df5207c4444b88c4ac3b687730b20", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503262\u002f410b9680daf34920abe4b19393e552fa", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503263?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503263?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298063-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6eed4fe87d33b91d243c373974d2b306", "x-ms-return-client-request-id": "true" @@ -163,42 +208,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f23b1b01-cf76-401a-ad0c-2494ca631816", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "57baa8b0-56b4-4dd7-b5d1-860b17635925", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503263/f4f7f20f716743d9bf869e4697fcb583", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503263\u002f74422af1f0d1485baf5bc6db794ba9f7", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503264?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503264?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298064-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2327463e6b7e8d7b69a2fba1576782c3", "x-ms-return-client-request-id": "true" @@ -210,42 +256,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d2aec468-9ceb-420d-a5a3-f5171d347b13", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d361531b-6692-485a-977c-8f55616b5c54", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503264/019b47cbb4db48f4992c348a2f3118e5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503264\u002f564b59c40a98448bbd699d8f873d47f8", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503265?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503265?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298065-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bdc32d24cb228f7ec533dc77387a02ff", "x-ms-return-client-request-id": "true" @@ -257,42 +304,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "334bc77e-9d04-41d1-b2fe-59563f0c4e71", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7c37c62d-a63d-4433-9142-772cca70f85a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503265/f8fb376d0d1b4beab3b491908ef548d9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503265\u002fb03df8b465f3476ca234f21c01910f37", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503266?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503266?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298066-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "707169c3d1c57d01d45f0590827b62bc", "x-ms-return-client-request-id": "true" @@ -304,42 +352,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "987b9070-27b0-4d77-8013-a2878cb057ec", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8ff6566f-7b0b-47ce-9cf4-13afd63b79b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503266/fd4ebcf7c7434edeb4addee5690bee42", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503266\u002f796b724650274915bece4ac5e4565622", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503267?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503267?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298067-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "461473b9f50e72e4c8985e4b8f0454ef", "x-ms-return-client-request-id": "true" @@ -351,42 +400,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "18ce0de6-1a22-4680-be42-6f7d6e167f74", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e446aa29-c02a-4f59-bac0-966e1e329221", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503267/258e5a1697344902a967f4fed18c5e64", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503267\u002f564b0d2131c04c7ba3d0974b09962228", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503268?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503268?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298068-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "eedefca012f653fd2c46e9c2c6ed0d49", "x-ms-return-client-request-id": "true" @@ -398,42 +448,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab2f9866-b806-4d00-8d8a-048e3737abf9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "243551be-de30-406a-b671-e7720fdc8ae9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503268/549f1f65974d4be19a23709a776fb402", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503268\u002fa8dff0d369004982bef9676b05676c47", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503269?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503269?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298069-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c5be20d0bb65cdf085fea72d73b6edd0", "x-ms-return-client-request-id": "true" @@ -445,42 +496,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3c1bf139-423c-4e25-81a4-b554926f6d3e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e4965b3a-cdd6-42a6-9ee8-d2921f9b3133", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503269/9f8e50d3b6864252afd56074a43e23a7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503269\u002f9538709579af424caa7450559da37d11", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032610?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032610?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "85f0150a739da6c675c11ac70c21acda", "x-ms-return-client-request-id": "true" @@ -492,42 +544,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "43e177d7-4c90-4393-8822-ac401bb86cfc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cd6c13da-bc5c-4b19-9b6f-dcf1c8308ef1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032610/9b6ab5f10df042bfaec92adac14c9ea6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032610\u002f3b4e3bb4e26940cdaf7a99ad8ede408c", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032611?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032611?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6f7a158a8f45e4890b1169f76ad0df76", "x-ms-return-client-request-id": "true" @@ -539,42 +592,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "08813867-2042-4909-96ca-b8a7fc892d71", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc975b03-5892-4087-86af-5b69a6e8b3aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032611/68d93583bbe94b6083a2fcf3ec4e0638", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032611\u002f31417002ed8549da842c709834401792", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032612?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032612?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b0b7195887fc5dab5a174fa3a129c163", "x-ms-return-client-request-id": "true" @@ -586,42 +640,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:02 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "67d5f471-b538-4237-a26b-f46793f1387f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4c823c6a-93da-43e9-beac-84cabc943cd3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032612/8dd88557dea24b9ca9f9f974eec88fc7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032612\u002f46e314cb9ea3458bab913362aeae72b0", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032613?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032613?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5ea2cd527e3b7b8a8b0b7a8c0ace3ba5", "x-ms-return-client-request-id": "true" @@ -633,42 +688,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "95f2f1cb-1957-4123-99e5-d1a083e1566b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "12ab966c-b67e-46ea-b955-532e2e1e7272", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032613/0fd950b707ea400a94db38cdf3fe9c4d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032613\u002f07ca4e5c31de4d3a9053ccfd88c4f309", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032614?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032614?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f26fa3e1fb6a03dd691d152e40e643e2", "x-ms-return-client-request-id": "true" @@ -680,42 +736,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6fd3db55-bb06-4b5e-961b-042bf324b8db", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d91e27d8-a8bc-45b7-8449-c4af21738904", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032614/db7b9f39955548f986de57006d7ba407", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032614\u002f5ee3ba71671a41f883cdbd0eef69d1a1", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032615?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032615?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429806f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9da5054f812dda3a8f3c24f10d1f528b", "x-ms-return-client-request-id": "true" @@ -727,42 +784,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7eb10070-747f-40b8-862a-85ec3659cf8b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "25c4ce7f-4ac9-428f-9d1a-020be6d56d8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032615/2d8877c29cce434590fffc1fb2738198", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032615\u002fa0cc0d536d8d4c0391ea2db5fc7f3758", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032616?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032616?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298070-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fec1a9dcceba56f9ef9ff51e695c3ba5", "x-ms-return-client-request-id": "true" @@ -774,42 +832,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bedba0a9-3501-47aa-ac81-2deb617c8b66", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5b6a9d64-b2cd-4570-ba19-7e030edf4457", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032616/846cf07e646b4a3eac119faf690bbc3e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032616\u002f84315e7172bd4465a270098a82575828", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032617?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032617?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298071-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "043c97c89d2860776894632dd6ecf549", "x-ms-return-client-request-id": "true" @@ -821,42 +880,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "75136d70-b574-4b12-bbe2-ebc2a2012f93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "78a6831c-da56-436b-b987-d1b6c57d4f92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032617/9ed371ad43ad458a9e56379901bf5bc6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032617\u002f195c063f44b3407491a2a124142b79e6", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032618?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032618?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298072-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "965189ca452481280c4eae8d8c1c7032", "x-ms-return-client-request-id": "true" @@ -868,42 +928,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "23d547c6-e862-4aa7-8e0c-4e83a7ab7b8c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "523b6762-34de-4677-80bc-0297ce6f7db3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032618/88999fd2a6374d1380de620c8fd72782", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032618\u002f2bc8b930ffe94780911497108f84469a", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032619?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032619?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298073-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "75297f014de33e62326195256acb8002", "x-ms-return-client-request-id": "true" @@ -915,42 +976,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "12f5676d-a204-4c51-8764-a20cc97e86a0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5cbfc821-3f11-4a27-8d88-e6bc7ef197a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032619/60a7dac0ee284f4692d36f29a8aba63c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032619\u002ff684ea47e998408aa6173c54408d76c9", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032620?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032620?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298074-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "df53abaaa40a82816fbbf8daeee9d44c", "x-ms-return-client-request-id": "true" @@ -962,42 +1024,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "613a3fe3-71f2-4e12-9da2-144043ca0cf4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d60cf990-e947-452b-b53d-2529b3cf8c94", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032620/b28240dcb4094027b068b07921e48158", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032620\u002fff4e18af4d6e4ee5a398bdb5d1523e92", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032621?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032621?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298075-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "572c30237fc37d65261364c3af021640", "x-ms-return-client-request-id": "true" @@ -1009,42 +1072,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e3410eec-368a-4d04-8ebc-242912af743d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "86424e23-da07-489d-9396-69a514b6e0d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032621/868783d5e3d7486c930b71823c9a59b0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032621\u002f2b5236a3934147f9b95f36b6ccca5655", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032622?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032622?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298076-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e0e3acce91c85c28fda6052854884f48", "x-ms-return-client-request-id": "true" @@ -1056,42 +1120,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1c3e1077-e5a8-4bc4-a327-08b491277b76", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "15feb1bd-0c2b-40cb-9581-5295fad49ecf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032622/b7cc98bf29654391ac7af4a34d9d5fe4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032622\u002fc8f91411fe6c40bab35dc7bac645d267", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032623?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032623?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298077-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3901498d289f2a3f46d6b8f640bdd36c", "x-ms-return-client-request-id": "true" @@ -1103,42 +1168,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5d08b113-000a-4b0b-97da-445a731f90af", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4c4a5709-a654-40f0-a516-595ecd8262eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032623/b54a7aaeb0bb407c8229462a46e5ae9c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032623\u002f36e3e0d3de0147b6b6020f014305b9de", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032624?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032624?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298078-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "420cb8a4f306928308d0591c7a3d289e", "x-ms-return-client-request-id": "true" @@ -1150,42 +1216,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ff51f9fb-c978-4548-9034-f89e8df65faa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0b2893c8-4514-4659-aa09-a1bc09efcd38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032624/1f62b9d37f754fce84a36403d5739b42", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032624\u002ff612d4d8b56240e6b04d737c02c7ce55", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032625?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032625?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298079-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "66361bc3dc01a6a16cb99af2d8311b40", "x-ms-return-client-request-id": "true" @@ -1197,42 +1264,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:03 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c28df5af-d890-4159-89b5-132eb4ed9567", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc2d890a-6366-4eb3-bc5b-51bf48ea0286", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032625/ddd2aa6bd6f84a86a03fa82d2508c1ab", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032625\u002fb01e9707c80a457ea5f1ebc7296ccefd", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032626?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032626?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9c8398d30d7c9942c56e31cece23b008", "x-ms-return-client-request-id": "true" @@ -1244,42 +1312,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90e15b84-e848-4c6a-92f0-f394f72af090", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a0b40301-db8d-450e-be16-6906757fbf53", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032626/1393baba02184aeaa68c9e194fc078dd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032626\u002fc6b6312c210141f693b3d8938ce97799", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032627?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032627?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "243319ae6d87c86b1665d64c5991b9d6", "x-ms-return-client-request-id": "true" @@ -1291,42 +1360,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "56e7670d-4945-46d4-881a-deba8efbf85f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "20472d72-766c-4c69-bf5d-d72298e5bbf2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032627/275c4758208b4613bb1ca50836ff7ed5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032627\u002f28db2aa4bf4d40fda0f2b6291890ed78", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032628?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032628?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e14919b48bbab622d99ca092aad2d749", "x-ms-return-client-request-id": "true" @@ -1338,42 +1408,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dc44bb57-5713-4681-b049-2bdbd71779b7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a2da3704-17dc-4f93-9a70-4c9ec3d6434b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032628/ea9900044a7b4d6d946deb774a5b460a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032628\u002f1391c1abedf44e77b486123df53afa76", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032629?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032629?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "be439109f7fe66b82dba861636f54033", "x-ms-return-client-request-id": "true" @@ -1385,42 +1456,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f9824e67-60a8-47ba-925b-d113a08c54e1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f68b73e7-08c8-45a5-9320-49ffab30b2a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032629/ff92f477fda24434983fc8cfcf1fdc41", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032629\u002fb34ac7510ab440b884b5ec6e0d999171", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032630?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032630?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b41a5bb4ced9224df77c4aeaccd81d43", "x-ms-return-client-request-id": "true" @@ -1432,42 +1504,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8b435a48-9a42-4e94-8e45-cad58504add2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "58bdb155-2b31-443a-bd41-bc35942e8180", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032630/6fac8fa170b44975ba39a7d4568979ff", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032630\u002fcfd2bf9660b84cb18dbb12dec9834c2a", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032631?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032631?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429807f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c7438c8dfb4dbcd761e3b4ff050c7fe4", "x-ms-return-client-request-id": "true" @@ -1479,42 +1552,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90a5357f-6a1f-4b4c-a13a-dd0b8590fb64", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61a388b8-deb5-488f-8455-c77f158e46a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032631/442d861954d24926b6fcb333420deb59", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032631\u002f0f4a841b41bf447db06def2f655210df", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032632?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032632?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298080-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4fdd6c5c23b83a6f4420c781accd9954", "x-ms-return-client-request-id": "true" @@ -1526,42 +1600,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2c20d939-2ca5-4676-91c0-df3026b0170b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "144a5070-0caf-4575-b0e7-8c158e63e2f5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032632/5c7e939899194effa4c5bd962a9e40f9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032632\u002fe5a414a11521401fa4f3bca03d846a04", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032633?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032633?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298081-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "aa88429d79b2b9e6845d53f61a4e1deb", "x-ms-return-client-request-id": "true" @@ -1573,42 +1648,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "715c1791-070b-4403-bd82-62b3796d9307", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6bc5a206-7286-459f-b896-9ebf62330a29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032633/fe8f546c61d9453aa48e571c479e46ea", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032633\u002fcf486a9a6a114715b54a1ac4282b5352", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032634?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032634?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298082-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5f8e66fdcefa6a8b1c08832d33551093", "x-ms-return-client-request-id": "true" @@ -1620,42 +1696,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "04e62c30-3bdf-4544-8459-0ac07ee77d0e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0d0e54db-0387-4c12-aed3-d712cfdbcbff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032634/b67f017cc54b472abcb15ace9f66a652", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032634\u002f90fbce2bb78f410489361c9ee2216541", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032635?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032635?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298083-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c2625f49d583e3328624ca5ad07920f5", "x-ms-return-client-request-id": "true" @@ -1667,42 +1744,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fa92db0b-db76-4a01-a340-caab83c2cfc3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fa766504-f2f4-4e33-b8af-e177be52a62b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032635/ac65daca5f86437ea01d1a965f233c9f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032635\u002f10020bc09b724e5ebcd87392f8d9392b", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032636?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032636?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298084-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4684db03393ece5ab61e8da9f5b8852e", "x-ms-return-client-request-id": "true" @@ -1714,42 +1792,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ce60bdf5-aeab-4404-bf11-20d6c2fc3df3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c9e47d37-a62e-4e4f-bf4f-8fa069180424", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032636/34de72815ac042b8b6cd8fe2d169a4d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032636\u002f69dc8828f1d540deb1073c1c52882a6c", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032637?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032637?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298085-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bbadbf4d5aeb276734abd9d6043199a3", "x-ms-return-client-request-id": "true" @@ -1761,42 +1840,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:04 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "28ae0b00-c27a-414e-8083-91574e8b0c98", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "77e49a92-4526-4d78-b4ca-11a071a5f5e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032637/212d9a7a78d846c7a061e4ac5b848849", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032637\u002f9d9c6c7ec7684e589f420ebc2ebd2ec4", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032638?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032638?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298086-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "582a8de8cad00f5405940c654888edcd", "x-ms-return-client-request-id": "true" @@ -1808,42 +1888,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "060a5222-1a2a-4e5d-98e3-c92a877aabf7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1bc78479-5f19-4e4a-ab06-684b6cf7c170", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032638/0ef9de959694442391afde38a3c39572", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032638\u002f85b57d607e7c47ad9df81404d052d986", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032639?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032639?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298087-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "110c9b9e65cca80a745d11936083ca84", "x-ms-return-client-request-id": "true" @@ -1855,42 +1936,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "880abddb-3ccc-4bff-bfe2-04291a9374b9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6a1a14fc-7861-4b27-bd55-8ad1f7e09350", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032639/1fcc6ee8634e431b9eaaa75abaef18ec", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032639\u002fc3ee70576a304d57b39e10fa06f36c1a", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032640?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032640?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298088-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "68c1e9842d8e835e6a9db6574e02dfab", "x-ms-return-client-request-id": "true" @@ -1902,42 +1984,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "046282fe-32d0-4e93-baec-c4fa1762d08a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "41b1302f-5344-4b95-8080-6c8f82d591a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032640/5ea50cf4cc134cdea6bdce99e3e29dfa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032640\u002fac000d6124144f00976ebf9010b4d362", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032641?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032641?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298089-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "68380bbe882483d78381e373b8c1af81", "x-ms-return-client-request-id": "true" @@ -1949,42 +2032,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "66d15848-5da0-45f7-9b42-322fa2dc79e4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "235d2394-e409-4334-a1b3-cf04ce8a09e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032641/f2ae1102c262419aa2d8063b9345f4c0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032641\u002faa7dd1554b494418b0707e2a67c454a0", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032642?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032642?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5ee087c984c6703e3d89a62eafb25a71", "x-ms-return-client-request-id": "true" @@ -1996,42 +2080,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f665854e-f7e2-45d4-a575-3adfa250db6e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a77ce761-1b29-4692-8d5e-c073266f1b35", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032642/0b843ff0218d48d4b806bead6fd6939a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032642\u002f0b3613edd7084f628234d68305d82924", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032643?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032643?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "54d5667d624afb60123ee50d49ebcba9", "x-ms-return-client-request-id": "true" @@ -2043,42 +2128,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49640c73-aca8-4a46-9277-64ef939eac91", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b0ed3545-4036-4eb4-aedc-0f213492abd1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032643/cb091866ac044523a468233c8ac3010a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032643\u002fb5874789bbf242ada93a80f4e46ca666", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032644?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032644?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c68d34ee812139e4cdc82b9be2a8d4d0", "x-ms-return-client-request-id": "true" @@ -2090,42 +2176,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "31a8770c-b550-4b76-9483-ed58108f164f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "acaa333c-3b9f-4b40-acf7-78f4e82ba144", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032644/1e5844d1ca144f48a1bda1e67552b4d1", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032644\u002f6330a9b2b5b64381a582b87b5850c978", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032645?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032645?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "51f572275aeb673727e44c889f312652", "x-ms-return-client-request-id": "true" @@ -2137,42 +2224,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fee20917-3a58-4b47-a393-12524a8a1ab2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d0493934-6794-4c85-9f96-d4da6388dc20", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032645/4f3bef489c014843af5a803e7a180df2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032645\u002faba7910ec25d4aea89823d5621b12e25", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032646?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032646?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7a40fcbd9325fc4f819b878236c41969", "x-ms-return-client-request-id": "true" @@ -2184,42 +2272,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5896bdd2-ff10-422b-97b5-30bd2ecf02ce", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "623d3855-a6aa-4811-b541-7af54da71d24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032646/97c3d12993384aaaadffa0a48741ffd7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032646\u002fd4b82955e2ba4b0ea9c9d009d800f484", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032647?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032647?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429808f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d7e5156a79f594bdfc259f3d355c9a9b", "x-ms-return-client-request-id": "true" @@ -2231,42 +2320,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bda9ff3c-97f3-46fa-adb4-59eeefd59c30", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9d97a0c4-f78f-4750-8b06-873f99915b2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032647/159b002179a447299871db401d8943e8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032647\u002f6c945662f8fa4dcdadcd8bbbef9e24f6", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032648?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032648?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298090-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e5ddd8a1596894aa22f9d050d2b43062", "x-ms-return-client-request-id": "true" @@ -2278,42 +2368,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cf10a504-da88-4fa9-b31f-d28c2aa8a9a6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "375524d3-3672-48b1-9e61-8c8aea463d5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032648/d8d5009615d24a3c859132fe9025d9b9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032648\u002fd764c54012c840b09ad59cf5e14923e4", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032649?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032649?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298091-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8a1de2cb4f4b445c3fac7efff312c725", "x-ms-return-client-request-id": "true" @@ -2325,41 +2416,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "459ae820-7ccf-4234-8f92-be640132cb06", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a4607776-f027-43df-a647-a749fb8c8a9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032649/abf68a48d8864363816f6c929f1d8a4d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032649\u002f41f6124b87994952b7151d2173c2b50a", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298092-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5de1ec0134e711016a51b4fba86dc148", "x-ms-return-client-request-id": "true" @@ -2368,3498 +2460,570 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "eecbd912-c5e0-48d2-b809-fc1e7fc3f731", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "52713cf4103e524f7c99a6bbdbaba010", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "451", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:06 GMT", + "Content-Length": "4611", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c3844ce4-5b17-433d-8d69-49d6ae26bbc2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a291c6ef-5f50-4306-8efd-563453ff24e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1019855369", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260", "attributes": { "enabled": true, - "created": 1559845814, - "updated": 1559845814, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e64fab32d2d3977be10c1ffa9b609bd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb83ced8-774e-432f-ab17-ddb37650e6bc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b70a35ea74a0f0e69c8ee14d8d4536be", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3720", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d85c3887-db62-4f6c-9edc-19687ce98799", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503261", + "attributes": { + "enabled": true, + "created": 1565114149, + "updated": 1565114149, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032610", + "attributes": { + "enabled": true, + "created": 1565114150, + "updated": 1565114150, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032611", + "attributes": { + "enabled": true, + "created": 1565114150, + "updated": 1565114150, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032612", + "attributes": { + "enabled": true, + "created": 1565114150, + "updated": 1565114150, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1097301718", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032613", "attributes": { "enabled": true, - "created": 1559845813, - "updated": 1559845813, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1098173084", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032614", "attributes": { "enabled": true, - "created": 1559757239, - "updated": 1559757239, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1109965623", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032615", "attributes": { "enabled": true, - "created": 1559767577, - "updated": 1559767577, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879150", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032616", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879151", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032617", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791510", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032618", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791511", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032619", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791512", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503262", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791513", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032620", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791514", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032621", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791515", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032622", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791516", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032623", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791517", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032624", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791518", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032625", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791519", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032626", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879152", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032627", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791520", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032628", "attributes": { "enabled": true, - "created": 1559861619, - "updated": 1559861619, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791521", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032629", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791522", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503263", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4ek1qWTFOVEF6TWpZek1DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4ek1qWTFOVEF6TWpZek1DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298093-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fdc9a3b0db1d2174c1da7131f055b71b", + "x-ms-client-request-id": "52713cf4103e524f7c99a6bbdbaba010", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4819", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:07 GMT", + "Content-Length": "4791", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0ee77156-ed43-47d6-b7d8-37e956e2a8c9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0f3fcb35-cd9a-4dc4-8a58-6a91f5eaf242", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791523", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791524", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791525", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791526", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791527", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791528", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791529", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879153", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791530", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791531", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791532", - "attributes": { - "enabled": true, - "created": 1559861621, - "updated": 1559861621, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791533", - "attributes": { - "enabled": true, - "created": 1559861621, - "updated": 1559861621, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791534", - "attributes": { - "enabled": true, - "created": 1559861621, - "updated": 1559861621, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791535", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032630", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791536", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032631", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791537", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032632", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791538", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032633", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791539", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032634", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879154", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032635", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791540", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032636", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791541", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032637", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791542", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032638", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791543", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032639", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791544", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503264", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791545", - "attributes": { - "enabled": true, - "created": 1559861622, - "updated": 1559861622, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a5d1d3fde9a0bd70c45e4944f12d099b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d4090055-0e95-43cc-92bc-759ce1db9537", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791546", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032640", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791547", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032641", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791548", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032642", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791549", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032643", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879155", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032644", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879156", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032645", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879157", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032646", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879158", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032647", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879159", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032648", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1151862578", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032649", "attributes": { "enabled": true, - "created": 1560274350, - "updated": 1560274350, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1176680581", - "attributes": { - "enabled": true, - "created": 1559760348, - "updated": 1559760349, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "f74960d69d970fb4c0e9f5c503b50047", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5583c393-ab4e-4592-8e1c-7f25d32451dd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ba50c6d79174c71e330c39bf91303093", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1536", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d602b98a-9536-4ef6-94b5-9e3085eb0a0f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1221328494", - "attributes": { - "enabled": true, - "created": 1559760304, - "updated": 1559760304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000010", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000011", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000012", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000013", - "attributes": { - "enabled": true, - "created": 1559771280, - "updated": 1559771280, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000014", - "attributes": { - "enabled": true, - "created": 1559771280, - "updated": 1559771280, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1253030411", - "attributes": { - "enabled": true, - "created": 1559754839, - "updated": 1559754839, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8f5bd6d1bf0b5f841fc1e4b7f3aaba0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "689a4bad-837e-43f2-bdf5-813daceab8b5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2a6c025e4fdd45264282c48b64f47d90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "451", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6d160e5f-f3de-48fd-99e7-6cd762eb522c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1343904724", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "2cf462b87059183b42f09ab2ac67d388", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8a9df3ac-b892-43f4-b770-ab0d6196f81b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8e612a5105c382b6af164d88fbf8fb2b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "18d3a738-c84f-4c90-b8ec-31368ceefb69", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "91fe54448db6eeb5c654e8edb47398db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3879d14f-440a-4ba6-ab1a-e67d9543995a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3a393bafee93b2ccac727d4222b31c49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "630", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "956f0a49-1968-4cf2-92b6-55c722fdd9c6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/149268810", - "attributes": { - "enabled": true, - "created": 1560269304, - "updated": 1560269304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1518842896", - "attributes": { - "enabled": true, - "created": 1559755215, - "updated": 1559755215, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "586e6ff44268c3d27473c86f1cc8cd3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "631", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c25b70d4-e24c-41ba-9cff-71634946c59d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1564574719", - "attributes": { - "enabled": true, - "created": 1559772521, - "updated": 1559772521, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1568621995", - "attributes": { - "enabled": true, - "created": 1559757192, - "updated": 1559757192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek1URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek1URWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "bfd9727ec1bf5597874ce5441072cb13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b61a52c6-c092-45d1-a8e8-80251c2ee87c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16UWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5qVTRPRFl3TVRFek16UWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "45f89f3740056d736975c520265d95e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ca8d0344-a818-4b21-96c3-9ba562a7670a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNVFF2UlRrMk1rWTNOa015TlRjNE5EWTFPVGd5T0RnNE5Ea3lNRFZFTkRJNU1UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNVFF2UlRrMk1rWTNOa015TlRjNE5EWTFPVGd5T0RnNE5Ea3lNRFZFTkRJNU1UVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b0c441a45cd9338ad719d01c5c8db301", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7622721d-32ca-4ee8-a5a7-500e112dfc5f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNemt2TURKRFJVVkRSVFJDT0VVNU5FRXpOamt6TkVZek1ERkJNalkxUWpsRU5USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXlJWE5sWTNKbGRDOHhPREUxTXpjMU56YzJNemt2TURKRFJVVkRSVFJDT0VVNU5FRXpOamt6TkVZek1ERkJNalkxUWpsRU5USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7d38b4a787d03d36ff6c5649fb772e2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1279", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "755329fa-d71f-4a4b-9f97-da4630c6a69d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185750", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185751", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185752", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185753", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185754", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMkwwTkdPRGt5TVRWQ1JrSTBNVFEyTlRNNU9UWTFORFZHTURWQlJVTTBOalE0SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMkwwTkdPRGt5TVRWQ1JrSTBNVFEyTlRNNU9UWTFORFZHTURWQlJVTTBOalE0SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "cf9f01b61aaeda3a14c46deb6f5610db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "175a4f7a-a245-455a-b1e3-bb2f91dc462a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNNUx6RkRNVGhFTkRBMk4wRTJOelF3TkROQlEwVTBNRE5CT1VJelJVSTNOMEpCSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNNUx6RkRNVGhFTkRBMk4wRTJOelF3TkROQlEwVTBNRE5CT1VJelJVSTNOMEpCSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7278c4c218251d120a86b16d06403860", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1596", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4473b529-a04c-48e4-9505-759c18664adb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1944099344", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1961436033", - "attributes": { - "enabled": true, - "created": 1559767547, - "updated": 1559767547, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730500", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730501", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730502", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730503", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730504", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlNRFV5Tnpjek1EVXdOQzgyT1RVd01USXdNVUkwTnpjME56bEdPRUkxT1VaQlJFTkVSVGc0TlVSQ1FpRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlNRFV5Tnpjek1EVXdOQzgyT1RVd01USXdNVUkwTnpjME56bEdPRUkxT1VaQlJFTkVSVGc0TlVSQ1FpRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "5b65a6eae4ed8d537a5d680b194acea8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4671", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "16d1bf71-8f5a-43bc-9851-a4e6805a1e26", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2107873347", - "attributes": { - "enabled": true, - "created": 1560269237, - "updated": 1560269237, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593850", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593851", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938510", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938511", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938512", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938513", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938514", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938515", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938516", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938517", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938518", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938519", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593852", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938520", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938521", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938522", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938523", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938524", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938525", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938526", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938527", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938528", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938529", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXlPUzgyT0RreE9EWkRRekpEUVRrME1FRTJPREV6UXpZeU1UaEVPREF3TmtFMk1TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlOREk0TlRrek9EVXlPUzgyT0RreE9EWkRRekpEUVRrME1FRTJPREV6UXpZeU1UaEVPREF3TmtFMk1TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "37877a5cbcfe9e05ee82c42769ccd4d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4851", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "159d7d28-5ca5-4fb0-9cb3-c725498d9e21", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593853", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938530", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938531", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938532", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938533", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938534", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938535", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938536", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938537", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938538", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938539", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593854", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938540", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938541", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938542", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938543", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938544", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938545", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938546", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938547", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938548", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938549", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593855", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593856", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593857", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHlOREk0TlRrek9EVTNMemMyT1VZMU9EYzNSamhHTXpRd01qVTVRVU0xT1RNMk5qVkdNamxCTVRVNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHlOREk0TlRrek9EVTNMemMyT1VZMU9EYzNSamhHTXpRd01qVTVRVU0xT1RNMk5qVkdNamxCTVRVNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c8010d8cb5f1dded70ebf7c7af0603bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "870", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0a94f96e-e672-46b2-a20a-88e43fa6b6ac", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593858", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593859", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/260792721", - "attributes": { - "enabled": true, - "created": 1559755246, - "updated": 1559755246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3lPUzlEUWtVNE1rUXhOakl6T0RrMFF6azVPVEZGTURoQk4wUXhSa0ZETnpVNE15RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHlPRFV3T1RneU9Ea3lPUzlEUWtVNE1rUXhOakl6T0RrMFF6azVPVEZGTURoQk4wUXhSa0ZETnpVNE15RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8c1008b800b92d62a1c76c6b1f2c23ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "81ee277e-3399-476e-941f-fba5f4f8154d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHlPRFV3T1RneU9EazNMelJDUkVSRE5qbEVRVEV5TmpRMVFVRkNOa0ZGUlVWRlF6TkJRelUwT0RsQ0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHlPRFV3T1RneU9EazNMelJDUkVSRE5qbEVRVEV5TmpRMVFVRkNOa0ZGUlVWRlF6TkJRelUwT0RsQ0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0c7f94890549a7b78ca9c613c43deee8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4484", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b21a980a-1c20-4426-baac-5d908e71ee14", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/29794703", - "attributes": { - "enabled": true, - "created": 1559749045, - "updated": 1559749045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/299394375", - "attributes": { - "enabled": true, - "created": 1559760272, - "updated": 1559760272, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/322887001", - "attributes": { - "enabled": true, - "created": 1559757269, - "updated": 1559757270, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503260", - "attributes": { - "enabled": true, - "created": 1560804301, - "updated": 1560804301, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503261", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032610", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032611", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032612", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032613", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032614", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032615", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032616", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032617", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032618", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032619", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503262", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032620", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032621", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032622", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032623", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032624", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032625", - "attributes": { - "enabled": true, - "created": 1560804303, - "updated": 1560804303, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032626", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHpNalkxTlRBek1qWXlOaTh4TXprelFrRkNRVEF5TVRnMFFVVkJRVFk0UXpsRk1UazBSa013TnpoRVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHpNalkxTlRBek1qWXlOaTh4TXprelFrRkNRVEF5TVRnMFFVVkJRVFk0UXpsRk1UazBSa013TnpoRVJDRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "606e057e47bb8b1aaad427294882bd44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4854", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6052017b-c1eb-4178-b6b2-10f4fdcaf81e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032627", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032628", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032629", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503263", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032630", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032631", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032632", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032633", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032634", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032635", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032636", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032637", - "attributes": { - "enabled": true, - "created": 1560804304, - "updated": 1560804304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032638", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032639", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503264", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032640", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032641", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032642", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032643", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032644", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032645", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032646", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032647", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032648", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032649", - "attributes": { - "enabled": true, - "created": 1560804305, - "updated": 1560804305, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHpNalkxTlRBek1qWTBPUzh5TWtaRFJETXpRelZHTWtRME5rVkNRa1UwTlVGQ05USkJPRUkyT1VWRk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDOHpNalkxTlRBek1qWTBPUzh5TWtaRFJETXpRelZHTWtRME5rVkNRa1UwTlVGQ05USkJPRUkyT1VWRk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1a3e4ac7f787b2765169ff103a4f6863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2531", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a150b6c-e280-4edc-8d05-429c6936e54f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503265", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503266", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503267", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503268", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503269", - "attributes": { - "enabled": true, - "created": 1560804302, - "updated": 1560804302, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165740", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165741", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165742", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165743", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165744", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/342770184", - "attributes": { - "enabled": true, - "created": 1560269255, - "updated": 1560269255, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/35473275", - "attributes": { - "enabled": true, - "created": 1559767038, - "updated": 1559767038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFNUwwTXdPVFUzT0RORk5ETTFPRFE1TXpWQ05VWXpRVVExTURVMVJEWTRPRFl3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFNUwwTXdPVFUzT0RORk5ETTFPRFE1TXpWQ05VWXpRVVExTURVMVJEWTRPRFl3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1aec83d8c3bd41f17af46175de8e5e0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9fcd9188-18a2-41d5-bb06-2f17d07fb7c9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRReEx6azVRakJHUkVZNVJFRXlOalExUlRJNE9VSTVPVGMyTkVORk9VUTNSa0l4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRReEx6azVRakJHUkVZNVJFRXlOalExUlRJNE9VSTVPVGMyTkVORk9VUTNSa0l4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7a4b82ebd4ff87608ebc0e524809515b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "553", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6ab2eb24-1b1a-40ff-8fa2-58a2bad4dbb6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/437739438", - "attributes": { - "enabled": true, - "created": 1559757379, - "updated": 1559757379, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFMEwwRkZNVEUwTUVVeU56VXlRelF5TlVOQ1JqWTJOemc1UkVJM1EwSkVNalUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFMEwwRkZNVEUwTUVVeU56VXlRelF5TlVOQ1JqWTJOemc1UkVJM1EwSkVNalUzSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c450c46ba395048658fc9f939501d4c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb23f184-8cba-443f-bf80-a838b8b6a27b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNM0wwTTNNMFE0TVRFMVF6SXdOVFExUkVFNVJUTkRNVVV5TWpCR1FqWXpSa00xSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNM0wwTTNNMFE0TVRFMVF6SXdOVFExUkVFNVJUTkRNVVV5TWpCR1FqWXpSa00xSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b725f50bee03046323658c00b49ff970", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1506", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac523dcc-4ebf-438c-8e6a-36b23ac8be1d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/555549901", - "attributes": { - "enabled": true, - "created": 1559692539, - "updated": 1559692539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/561910166", - "attributes": { - "enabled": true, - "created": 1559757422, - "updated": 1559757422, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/667547545", - "attributes": { - "enabled": true, - "created": 1559772501, - "updated": 1559772501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/765588107", - "attributes": { - "enabled": true, - "created": 1560272692, - "updated": 1560272692, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/774905515", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1559771777, - "updated": 1559771777, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/775497743", - "attributes": { - "enabled": true, - "created": 1559754704, - "updated": 1559754704, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODNOelUwT1RjM05ETXZSa00yTmtRMFJESXhOVU16TkVNelJEZzRORGRDUlRCRU1VSXdOekJCUmpZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODNOelUwT1RjM05ETXZSa00yTmtRMFJESXhOVU16TkVNelJEZzRORGRDUlRCRU1VSXdOekJCUmpZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "190905a2993d4874fb46210234cdf18d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "552", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a9af96ea-42c1-4704-b973-4b2efd7aa430", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/83438139", - "attributes": { - "enabled": true, - "created": 1559760319, - "updated": 1559760319, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFeUwwVTFPRGd6UmtFNFF6bENRVFE1T1RjNE1ETkJORVZCUmtaRE5UZ3dRek5ESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFeUwwVTFPRGd6UmtFNFF6bENRVFE1T1RjNE1ETkJORVZCUmtaRE5UZ3dRek5ESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "52474be899e47c57604ba12f178650b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "516a9639-7828-4647-b3b7-55ba6daccb68", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNMUx6VTVNVEJCTWprMVJFSkRPRFJFTlVKQk1UVkdPRGt5UmpSRVJqYzBNa0V3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNMUx6VTVNVEJCTWprMVJFSkRPRFJFTlVKQk1UVkdPRGt5UmpSRVJqYzBNa0V3SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8ff02e03baf7718580dcbbbdcc60d055", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "868", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "227dc62a-05b5-4e7c-9253-c4d2ed7f7620", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/915875143", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503265", "attributes": { "enabled": true, - "created": 1559845843, - "updated": 1559845843, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/917377779", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503266", "attributes": { "enabled": true, - "created": 1559757224, - "updated": 1559757224, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/923168249", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503267", "attributes": { "enabled": true, - "created": 1559692323, - "updated": 1559692323, + "created": 1565114150, + "updated": 1565114150, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503268", + "attributes": { + "enabled": true, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVORFUxTlRNME56Z3dMek15TXpCQ01UaEdRekF5T1RSRFJVWTRPRVJETkRneE1UY3hSamd4T0RReklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVORFUxTlRNME56Z3dMek15TXpCQ01UaEdRekF5T1RSRFJVWTRPRVJETkRneE1UY3hSamd4T0RReklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6818fe73a657098cad8cb8f2f7453175", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "661c11e1-a663-4be3-b539-a4e1df7382c8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3pNUzlET0RjeVF6VkVOalkwTmpnME1rSkZPRGd5UXpORk0wRTJPRGsyTmpnNE9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4ek1qWTFOVEF6TWpZNUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVORFUxTlRNME56Z3pNUzlET0RjeVF6VkVOalkwTmpnME1rSkZPRGd5UXpORk0wRTJPRGsyTmpnNE9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4ek1qWTFOVEF6TWpZNUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298094-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "05ff67f661dd2d95c5d5d207de9ab000", + "x-ms-client-request-id": "e64fab32d2d3977be10c1ffa9b609bd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "505", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:22 GMT", + "Content-Length": "207", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b2c626e6-5756-4506-bb26-996767ad7229", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d0d894c-537b-4710-b4ed-ba2c70e59f61", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955294414", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503269", "attributes": { "enabled": true, - "created": 1559772501, - "updated": 1559772501, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODVOVFV5T1RRME1UUXZPRUZDUlRZNU1EVkdRekF6TkRVd1JFSkNOME0xUWpBNE9EQXlNVGMyTmtVaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODVOVFV5T1RRME1UUXZPRUZDUlRZNU1EVkdRekF6TkRVd1JFSkNOME0xUWpBNE9EQXlNVGMyTmtVaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "18bb4c7be76d5d61a2e6e16a0293793b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fce32ef1-dd08-4f89-8aba-9ab148c2aa0e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3pNQzlGTVVNMk0wTkdOa1EyT1RZME4wTXlRVEV3T1ROR05VWkVRVEpGTmpBMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXhJWE5sWTNKbGRDODVOalkzT0RrME56a3pNQzlGTVVNMk0wTkdOa1EyT1RZME4wTXlRVEV3T1ROR05VWkVRVEpGTmpBMk9DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "64c645abca61117769eba381d3842b13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c800c813-2564-4d73-9402-cba32db307d7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azVMMFV4TURrMU9EUXlNell5UVRSRFF6YzRSREZGTkRGRU0wVkZNakl5TVVJeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDODVOalkzT0RrME56azVMMFV4TURrMU9EUXlNell5UVRSRFF6YzRSREZGTkRGRU0wVkZNakl5TVVJeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ab76b8dc19890e0805a263f77f2a2a32", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8344400e-3bfc-4243-9544-7b4727b3ea02", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNekx6VTROakZHTVVZMk1UUTBRalEyTmtaQ05VTXdOVGxGTURBM056RTBOelUySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNekx6VTROakZHTVVZMk1UUTBRalEyTmtaQ05VTXdOVGxGTURBM056RTBOelUySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "985c965c4bd3b09ed5aaae8244e0891d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d2ad9b8d-3403-42fe-9992-63e246cebd1e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFeUx6aEVNVVkwTTBFNE16TTRORFJHUTBOQ1JUUTNNVU0wTnpJek5qVkJOMEl4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFeUx6aEVNVVkwTTBFNE16TTRORFJHUTBOQ1JUUTNNVU0wTnpJek5qVkJOMEl4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4a8dcebbce1c92b23db75ebf6780923e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "375", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "944a1dd4-aa9a-44e2-b813-ebc46fffbc1f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNMUx6QTFSa0UxTnpoRE1ETXdOVFE1TmtJNVJESTVNMEl3T0RCQ04wSkZNVVE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNjAhTURBd01EYzBJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNMUx6QTFSa0UxTnpoRE1ETXdOVFE1TmtJNVJESTVNMEl3T0RCQ04wSkZNVVE1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "3d2570c09328913f19c5d5de6a85ca25", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6fc9be9b-2dcc-4654-bf0c-346dd88f972b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503260?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298095-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b13b4518e09d8d15e4c95a1becdf4954", + "x-ms-client-request-id": "b70a35ea74a0f0e69c8ee14d8d4536be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5867,45 +3031,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6c6f5424-31bc-4385-88f4-6b78bf92f59c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7a69b026-40a7-4a8a-8249-545afbd2a664", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503260", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503260/d4e9632c8faf4ba08f344605e3d4d8d7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503260", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503260\u002f49b91a01f76c45e4afa3f5ad55be736c", "attributes": { "enabled": true, - "created": 1560804301, - "updated": 1560804301, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503261?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503261?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298096-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d3c270184cba28f58efc3156f8d328b7", + "x-ms-client-request-id": "fdc9a3b0db1d2174c1da7131f055b71b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5913,45 +3078,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "52756d73-d685-4022-b19d-e5af1815d2ad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "79c454b1-f8b5-4888-9652-d87b87f1dfe7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503261", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503261/5434e57fae674a79810e549180e99d4a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503261", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503261\u002f56ae371959084e6490618ee05d319427", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503262?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503262?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298097-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "22a638ede044dfa15b97595f3824a439", + "x-ms-client-request-id": "a5d1d3fde9a0bd70c45e4944f12d099b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5959,45 +3125,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ba7c2e5e-9e79-4795-8799-1ad7c263b90a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2f2b4e03-7446-4109-8b82-d517e4638b8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503262", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503262/0c5df5207c4444b88c4ac3b687730b20", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503262", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503262\u002f410b9680daf34920abe4b19393e552fa", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503263?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503263?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298098-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f9c6807cf7c3cc6b501222a0afbf9410", + "x-ms-client-request-id": "f74960d69d970fb4c0e9f5c503b50047", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6005,45 +3172,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "92115306-f7f3-4717-9f3f-56a192178d7e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6416a4e1-4061-4f58-8d54-dd22dc6cafca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503263", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503263/f4f7f20f716743d9bf869e4697fcb583", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503263", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503263\u002f74422af1f0d1485baf5bc6db794ba9f7", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114149, + "updated": 1565114149, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503264?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503264?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298099-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b32ea2a127383710cfe27722f396f06a", + "x-ms-client-request-id": "ba50c6d79174c71e330c39bf91303093", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6051,45 +3219,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6637d5a-5471-4299-84a3-89dcd09118c0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3b603b12-a816-4ed3-ae05-489891d3cfba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503264", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503264/019b47cbb4db48f4992c348a2f3118e5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503264", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503264\u002f564b59c40a98448bbd699d8f873d47f8", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503265?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503265?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "77daf7572e0cf5f4cddad132bd002f9c", + "x-ms-client-request-id": "8f5bd6d1bf0b5f841fc1e4b7f3aaba0f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6097,45 +3266,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c694d231-16cc-4c74-960d-9642ea19c92e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e8a08e7b-0f16-45f5-91b3-e4f03cd9f4eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503265", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503265/f8fb376d0d1b4beab3b491908ef548d9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503265", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503265\u002fb03df8b465f3476ca234f21c01910f37", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503266?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503266?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "95bd4803f1f55500708f29e07f48d9b9", + "x-ms-client-request-id": "2a6c025e4fdd45264282c48b64f47d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6143,45 +3313,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "447f646d-d41b-4a1a-b241-c15bc8572473", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eaad29f7-5706-4f9c-a312-c94e6a3eb484", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503266", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503266/fd4ebcf7c7434edeb4addee5690bee42", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503266", + "deletedDate": 1565114154, + "scheduledPurgeDate": 1572890154, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503266\u002f796b724650274915bece4ac5e4565622", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503267?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503267?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b848b8221ce47203ae38e55e55dd79ce", + "x-ms-client-request-id": "2cf462b87059183b42f09ab2ac67d388", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6189,45 +3360,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "82cd2669-fb82-480c-a2aa-fe5a607758a8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4db85290-8628-4732-bf68-5e07646d8f50", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503267", - "deletedDate": 1560804325, - "scheduledPurgeDate": 1568580325, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503267/258e5a1697344902a967f4fed18c5e64", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503267", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503267\u002f564b0d2131c04c7ba3d0974b09962228", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503268?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503268?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "aa1fdbb25ad86674f685077d05137685", + "x-ms-client-request-id": "8e612a5105c382b6af164d88fbf8fb2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6235,45 +3407,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6be63ceb-12d4-4f11-a623-7cacbef882a6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "701ece29-9200-464b-8166-56235aa221a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503268", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503268/549f1f65974d4be19a23709a776fb402", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503268", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503268\u002fa8dff0d369004982bef9676b05676c47", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/3265503269?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503269?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "050f180177b7e6b7454be7bd0ba1ff92", + "x-ms-client-request-id": "91fe54448db6eeb5c654e8edb47398db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6281,45 +3454,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9c68f68e-1f93-4af5-9713-8575d7953fb6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1647c2a7-4689-4478-87b4-3cca5ab422bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503269", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3265503269/9f8e50d3b6864252afd56074a43e23a7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503269", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f3265503269\u002f9538709579af424caa7450559da37d11", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032610?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032610?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429809f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a32d5a162e28c8e143e1c15f15866c9a", + "x-ms-client-request-id": "3a393bafee93b2ccac727d4222b31c49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6327,45 +3501,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c5650fab-aacc-4030-aa60-6d84c9752515", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "45a1f80b-1bee-4453-8644-06f1d997bcfe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032610", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032610/9b6ab5f10df042bfaec92adac14c9ea6", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032610", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032610\u002f3b4e3bb4e26940cdaf7a99ad8ede408c", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032611?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032611?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3d5d60c273ce3b162439658c73b75b54", + "x-ms-client-request-id": "586e6ff44268c3d27473c86f1cc8cd3b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6373,45 +3548,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "42c1798e-f613-4b53-b411-13ce4c3f0f82", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "239ef273-a03a-4bd2-80aa-d9e0caebf0fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032611", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032611/68d93583bbe94b6083a2fcf3ec4e0638", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032611", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032611\u002f31417002ed8549da842c709834401792", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032612?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032612?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "aa677485d2e6d25c3647c2d6b657d0be", + "x-ms-client-request-id": "bfd9727ec1bf5597874ce5441072cb13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6419,45 +3595,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4f887df1-4e66-4843-8782-e0a71299d725", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9193998a-a3ab-4d9b-8452-53c087011458", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032612", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032612/8dd88557dea24b9ca9f9f974eec88fc7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032612", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032612\u002f46e314cb9ea3458bab913362aeae72b0", "attributes": { "enabled": true, - "created": 1560804302, - "updated": 1560804302, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032613?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032613?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "abfa4cdec244a2c443f27fefc954548b", + "x-ms-client-request-id": "45f89f3740056d736975c520265d95e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6465,45 +3642,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f74ca863-2c84-437b-a65b-3bc77eea320f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1abc4ca1-5c44-4c91-9c4b-181d7c1f43a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032613", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032613/0fd950b707ea400a94db38cdf3fe9c4d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032613", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032613\u002f07ca4e5c31de4d3a9053ccfd88c4f309", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032614?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032614?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a1da6c86c21ef0b4038b0687b14084cc", + "x-ms-client-request-id": "b0c441a45cd9338ad719d01c5c8db301", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6511,45 +3689,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "00ff8a63-6904-4ba9-85c4-82888d0627f0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a1910983-6a66-4258-96e3-3e2169ce5874", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032614", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032614/db7b9f39955548f986de57006d7ba407", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032614", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032614\u002f5ee3ba71671a41f883cdbd0eef69d1a1", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032615?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032615?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "26ada668b0bdc310afc466f3526d08e1", + "x-ms-client-request-id": "7d38b4a787d03d36ff6c5649fb772e2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6557,45 +3736,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "77d3327e-9e6e-4c1e-ab52-b53d57cf7c78", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "629dbcfd-9031-4fae-824a-c296f86da7af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032615", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032615/2d8877c29cce434590fffc1fb2738198", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032615", + "deletedDate": 1565114155, + "scheduledPurgeDate": 1572890155, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032615\u002fa0cc0d536d8d4c0391ea2db5fc7f3758", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114150, + "updated": 1565114150, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032616?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032616?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4a4f36f22f7d1c9f980aa7b9bb3df103", + "x-ms-client-request-id": "cf9f01b61aaeda3a14c46deb6f5610db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6603,45 +3783,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b86ab31-b568-4a73-8bbc-cbcfa68be27e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9948ef3b-d102-4a69-be22-ec7dc77ef93e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032616", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032616/846cf07e646b4a3eac119faf690bbc3e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032616", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032616\u002f84315e7172bd4465a270098a82575828", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032617?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032617?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2386b26e2ea7d5ce5b17f15a5cc09d96", + "x-ms-client-request-id": "7278c4c218251d120a86b16d06403860", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6649,45 +3830,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "89358a1b-1950-47fe-93ae-47fc9930c688", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9a7eeaba-c2f4-4c12-8cff-cf6d311c5c51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032617", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032617/9ed371ad43ad458a9e56379901bf5bc6", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032617", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032617\u002f195c063f44b3407491a2a124142b79e6", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032618?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032618?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7a94258239f1394f06918eb308560872", + "x-ms-client-request-id": "5b65a6eae4ed8d537a5d680b194acea8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6695,45 +3877,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "87dd3161-8904-49e5-a0f7-5d20d26d8dc5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4a7add3e-3966-450c-a0de-cfd244024158", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032618", - "deletedDate": 1560804326, - "scheduledPurgeDate": 1568580326, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032618/88999fd2a6374d1380de620c8fd72782", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032618", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032618\u002f2bc8b930ffe94780911497108f84469a", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032619?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032619?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a08563d3e4e6c43a6779ee653d45bfd8", + "x-ms-client-request-id": "37877a5cbcfe9e05ee82c42769ccd4d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6741,45 +3924,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "64ca6047-44d3-437c-920b-cb4b58c0536d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "44805d02-9d6c-4c56-a80a-d335dc3c2b77", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032619", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032619/60a7dac0ee284f4692d36f29a8aba63c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032619", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032619\u002ff684ea47e998408aa6173c54408d76c9", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032620?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032620?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980a9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9536116c76a83412624c1d15a01bcd04", + "x-ms-client-request-id": "c8010d8cb5f1dded70ebf7c7af0603bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6787,45 +3971,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "315ac923-5780-4fcc-b77b-8b5d8fa76c09", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7216bea1-6ae9-4b67-a014-e6d4a4c6966e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032620", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032620/b28240dcb4094027b068b07921e48158", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032620", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032620\u002fff4e18af4d6e4ee5a398bdb5d1523e92", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032621?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032621?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980aa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f9867e0efd3a9dafead013774ae9fbc0", + "x-ms-client-request-id": "8c1008b800b92d62a1c76c6b1f2c23ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6833,45 +4018,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5480a427-5e65-4d5e-82e1-630aba92e507", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "10fdd1db-6b4d-4690-9ead-69cd727966cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032621", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032621/868783d5e3d7486c930b71823c9a59b0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032621", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032621\u002f2b5236a3934147f9b95f36b6ccca5655", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032622?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032622?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ab-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f746b6d272205dc951513d99c725244b", + "x-ms-client-request-id": "0c7f94890549a7b78ca9c613c43deee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6879,45 +4065,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bb230b80-944f-438f-93d0-6a13b2f165ff", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5b4ffdc0-b7a4-430d-9cfb-2831ec9a017e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032622", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032622/b7cc98bf29654391ac7af4a34d9d5fe4", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032622", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032622\u002fc8f91411fe6c40bab35dc7bac645d267", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032623?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032623?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ac-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "be57e9acc6bf6e9d6299abd8629ae979", + "x-ms-client-request-id": "606e057e47bb8b1aaad427294882bd44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6925,45 +4112,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a014b83-8882-4ce6-b9e0-5c083e1fc99f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "38bc22a1-7980-46ba-9d82-b06c88d5d929", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032623", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032623/b54a7aaeb0bb407c8229462a46e5ae9c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032623", + "deletedDate": 1565114156, + "scheduledPurgeDate": 1572890156, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032623\u002f36e3e0d3de0147b6b6020f014305b9de", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032624?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032624?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ad-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ea425d50d5d49ce4b428a8e9c015d6c5", + "x-ms-client-request-id": "1a3e4ac7f787b2765169ff103a4f6863", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6971,45 +4159,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a1acd35-2dcd-4987-8a99-599befb8bb39", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c0a7f933-186d-4075-ad7f-5c8abd0346fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032624", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032624/1f62b9d37f754fce84a36403d5739b42", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032624", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032624\u002ff612d4d8b56240e6b04d737c02c7ce55", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032625?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032625?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ae-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "61cac7ac3d920c0018d89587c7f1fab6", + "x-ms-client-request-id": "1aec83d8c3bd41f17af46175de8e5e0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7017,45 +4206,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4a9813ee-33cf-4977-b446-e08df4267f19", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3ad03603-48f1-4f4d-8043-f31759ad915a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032625", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032625/ddd2aa6bd6f84a86a03fa82d2508c1ab", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032625", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032625\u002fb01e9707c80a457ea5f1ebc7296ccefd", "attributes": { "enabled": true, - "created": 1560804303, - "updated": 1560804303, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032626?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032626?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980af-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6a49c3673ae2d67705ba09961eb3ae4c", + "x-ms-client-request-id": "7a4b82ebd4ff87608ebc0e524809515b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7063,45 +4253,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f948210e-8f81-4512-b6e4-6434625e7b4b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ffefdfe2-0177-46e7-9560-12d73e5a5c18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032626", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032626/1393baba02184aeaa68c9e194fc078dd", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032626", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032626\u002fc6b6312c210141f693b3d8938ce97799", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114151, + "updated": 1565114151, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032627?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032627?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9b2ce5c288cf13e65c36d1fc405dd5c3", + "x-ms-client-request-id": "c450c46ba395048658fc9f939501d4c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7109,45 +4300,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b919e039-7b7d-47e2-ad5f-1b05acdebd80", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0069b70d-ca17-47de-940f-bc7a31de727b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032627", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032627/275c4758208b4613bb1ca50836ff7ed5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032627", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032627\u002f28db2aa4bf4d40fda0f2b6291890ed78", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032628?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032628?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fc81f12e6bcc71e350f35bd8336aee65", + "x-ms-client-request-id": "b725f50bee03046323658c00b49ff970", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7155,45 +4347,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "45d0f0c8-9bb9-421d-aaaf-e21a6e965034", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3580d0c5-fdf9-42b0-816d-b360e905aec6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032628", - "deletedDate": 1560804327, - "scheduledPurgeDate": 1568580327, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032628/ea9900044a7b4d6d946deb774a5b460a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032628", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032628\u002f1391c1abedf44e77b486123df53afa76", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032629?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032629?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e1c4482a5fc4dfe6dd350eab687a96a7", + "x-ms-client-request-id": "190905a2993d4874fb46210234cdf18d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7201,45 +4394,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bab94dfe-2423-4fa4-b23c-b780774ce950", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c1a1c824-247b-4b86-a403-4d14fdf043cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032629", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032629/ff92f477fda24434983fc8cfcf1fdc41", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032629", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032629\u002fb34ac7510ab440b884b5ec6e0d999171", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032630?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032630?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2c6846e5b131568002ba4adc2c0ee0f1", + "x-ms-client-request-id": "52474be899e47c57604ba12f178650b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7247,45 +4441,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6ac2be93-0b2b-43c3-b2ad-3d75b2ce3880", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "052ad97d-9dca-4dfa-8b57-7e60352914da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032630", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032630/6fac8fa170b44975ba39a7d4568979ff", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032630", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032630\u002fcfd2bf9660b84cb18dbb12dec9834c2a", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032631?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032631?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f7d26c48f399cefe0ba21f965d3709d6", + "x-ms-client-request-id": "8ff02e03baf7718580dcbbbdcc60d055", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7293,45 +4488,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aed1e2b7-ec15-4cd6-9639-aebb6b3bbda9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "896f55d1-315d-4862-a3cd-f855e8c8901b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032631", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032631/442d861954d24926b6fcb333420deb59", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032631", + "deletedDate": 1565114157, + "scheduledPurgeDate": 1572890157, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032631\u002f0f4a841b41bf447db06def2f655210df", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032632?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032632?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ecf2b45dc1017833c76ddf0a140ab2cf", + "x-ms-client-request-id": "6818fe73a657098cad8cb8f2f7453175", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7339,45 +4535,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "87aa5fce-4568-4000-853a-9f3c8c5fe037", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3929a387-e071-4001-9e91-0c6bbdefbb8a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032632", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032632/5c7e939899194effa4c5bd962a9e40f9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032632", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032632\u002fe5a414a11521401fa4f3bca03d846a04", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032633?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032633?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fc621c549ea7f10e4799218f92e9f9ca", + "x-ms-client-request-id": "05ff67f661dd2d95c5d5d207de9ab000", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7385,45 +4582,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7cc2d87c-9036-4438-b845-21ca93af3d23", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6d2b3549-a03c-40d7-8fd1-00cdbbd3e977", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032633", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032633/fe8f546c61d9453aa48e571c479e46ea", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032633", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032633\u002fcf486a9a6a114715b54a1ac4282b5352", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032634?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032634?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "787e74b1f31b87f039592f2b13f4ba00", + "x-ms-client-request-id": "18bb4c7be76d5d61a2e6e16a0293793b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7431,45 +4629,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7f967d45-5b09-4ef4-9237-b15aeaa116f9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "950ad4a2-6028-4852-9d49-f570816ff554", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032634", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032634/b67f017cc54b472abcb15ace9f66a652", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032634", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032634\u002f90fbce2bb78f410489361c9ee2216541", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032635?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032635?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "41424fef0cd5be2ea601a567a0a4e6de", + "x-ms-client-request-id": "64c645abca61117769eba381d3842b13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7477,45 +4676,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "09af915d-9086-42f5-90ce-e9c83c83013a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7d40ace-5b3a-4ed7-829f-8385ab05527b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032635", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032635/ac65daca5f86437ea01d1a965f233c9f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032635", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032635\u002f10020bc09b724e5ebcd87392f8d9392b", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032636?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032636?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980b9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9f5914743a8b61b42bdbc34d6ee2dd53", + "x-ms-client-request-id": "ab76b8dc19890e0805a263f77f2a2a32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7523,45 +4723,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd110850-6437-4f53-b096-b5795277bc55", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3d056b0a-cc3d-40be-83f6-2ab8781cd210", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032636", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032636/34de72815ac042b8b6cd8fe2d169a4d3", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032636", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032636\u002f69dc8828f1d540deb1073c1c52882a6c", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032637?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032637?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ba-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "429f20dfb8a7a4f546bfd11a4e89e695", + "x-ms-client-request-id": "985c965c4bd3b09ed5aaae8244e0891d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7569,45 +4770,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cdb5f840-aaa2-4574-8eb4-9f39e90cd758", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "42d5f128-fb50-470e-b271-64acfa65ff74", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032637", - "deletedDate": 1560804328, - "scheduledPurgeDate": 1568580328, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032637/212d9a7a78d846c7a061e4ac5b848849", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032637", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032637\u002f9d9c6c7ec7684e589f420ebc2ebd2ec4", "attributes": { "enabled": true, - "created": 1560804304, - "updated": 1560804304, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032638?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032638?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980bb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ffb751731a9bb5759be115f949e050c4", + "x-ms-client-request-id": "4a8dcebbce1c92b23db75ebf6780923e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7615,45 +4817,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49a98c9f-465d-4133-9c46-31b5c065109c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c1500f41-a679-41cd-8dc2-27b7b0b6687c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032638", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032638/0ef9de959694442391afde38a3c39572", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032638", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032638\u002f85b57d607e7c47ad9df81404d052d986", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032639?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032639?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980bc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "80875223a304bc361fb458cb689912a2", + "x-ms-client-request-id": "3d2570c09328913f19c5d5de6a85ca25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7661,45 +4864,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b51f9ea6-94c8-496e-a838-f43901fc443d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "199b0515-b937-4355-b44c-3135ea3f5fcf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032639", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032639/1fcc6ee8634e431b9eaaa75abaef18ec", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032639", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032639\u002fc3ee70576a304d57b39e10fa06f36c1a", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114152, + "updated": 1565114152, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032640?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032640?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980bd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1cda2ef4de2ac4b7abeaa7c6a2fb5b66", + "x-ms-client-request-id": "b13b4518e09d8d15e4c95a1becdf4954", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7707,45 +4911,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a717e57-81e4-4938-b15c-55444c503c17", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1a6b2a21-3ea9-4d81-b538-a01c23d2e598", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032640", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032640/5ea50cf4cc134cdea6bdce99e3e29dfa", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032640", + "deletedDate": 1565114158, + "scheduledPurgeDate": 1572890158, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032640\u002fac000d6124144f00976ebf9010b4d362", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032641?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032641?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980be-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fcf70d6f6601d0901bfbdfe6c2a94c01", + "x-ms-client-request-id": "d3c270184cba28f58efc3156f8d328b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7753,45 +4958,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3f7392a4-e4bc-460c-8225-7333da5d0477", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "331a530d-542b-44df-8c1c-85ffcfb6180b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032641", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032641/f2ae1102c262419aa2d8063b9345f4c0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032641", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032641\u002faa7dd1554b494418b0707e2a67c454a0", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032642?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032642?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980bf-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1b0572ce330644999ac3d41afc701924", + "x-ms-client-request-id": "22a638ede044dfa15b97595f3824a439", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7799,45 +5005,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8baf182f-35be-456a-8e32-6a028e3d9ead", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b34d1b1d-6e4a-4e7c-b1a1-8f138fe02a3b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032642", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032642/0b843ff0218d48d4b806bead6fd6939a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032642", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032642\u002f0b3613edd7084f628234d68305d82924", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032643?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032643?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5b5cf25916a28ea19d0a012fffd10202", + "x-ms-client-request-id": "f9c6807cf7c3cc6b501222a0afbf9410", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7845,45 +5052,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:28 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac424fcb-af61-411a-bd67-fde4538d3183", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "efeb360e-9ae0-48dc-ad7a-74529d17afa9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032643", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032643/cb091866ac044523a468233c8ac3010a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032643", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032643\u002fb5874789bbf242ada93a80f4e46ca666", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032644?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032644?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2ff7a59d3ff53c5f74b2623e9175d3ab", + "x-ms-client-request-id": "b32ea2a127383710cfe27722f396f06a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7891,45 +5099,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0247e311-4aa7-463b-bc08-f340df68cb41", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6240af01-7203-4e6e-b2a0-d6fe98b7f3ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032644", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032644/1e5844d1ca144f48a1bda1e67552b4d1", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032644", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032644\u002f6330a9b2b5b64381a582b87b5850c978", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032645?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032645?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cf8dbae1f14cb85fd1777dfc316944c8", + "x-ms-client-request-id": "77daf7572e0cf5f4cddad132bd002f9c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7937,45 +5146,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38a964ec-8ba9-4b37-8084-941a44c340bf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3c8df5ee-f916-4a3e-9279-b98dca0ff9ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032645", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032645/4f3bef489c014843af5a803e7a180df2", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032645", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032645\u002faba7910ec25d4aea89823d5621b12e25", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032646?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032646?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "577cd2c0e978192e9220e6efb463fc28", + "x-ms-client-request-id": "95bd4803f1f55500708f29e07f48d9b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7983,45 +5193,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "abea0f32-ed43-4eaa-8f92-7a6abd9e080d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0facdf50-cb2d-4843-9c05-f8f71dd43d15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032646", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032646/97c3d12993384aaaadffa0a48741ffd7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032646", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032646\u002fd4b82955e2ba4b0ea9c9d009d800f484", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032647?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032647?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "444d56363243acb5453f5e7ec2630a0a", + "x-ms-client-request-id": "b848b8221ce47203ae38e55e55dd79ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8029,45 +5240,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "93ddc365-8f54-4e13-99b9-080dc78b4cbe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c80d6d8a-9a1f-47e5-a3b4-a993a11d89a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032647", - "deletedDate": 1560804329, - "scheduledPurgeDate": 1568580329, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032647/159b002179a447299871db401d8943e8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032647", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032647\u002f6c945662f8fa4dcdadcd8bbbef9e24f6", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032648?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032648?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "be7d996d7cf9f7338c733c2c0a6f036d", + "x-ms-client-request-id": "aa1fdbb25ad86674f685077d05137685", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8075,45 +5287,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "598526d0-54dd-4a21-bf66-db31d9622b66", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6eb1c7ad-9141-4e22-a035-e8e665c39f97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032648", - "deletedDate": 1560804330, - "scheduledPurgeDate": 1568580330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032648/d8d5009615d24a3c859132fe9025d9b9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032648", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032648\u002fd764c54012c840b09ad59cf5e14923e4", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/32655032649?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032649?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980c6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dbc5557a001b8d851dd011388aaf562f", + "x-ms-client-request-id": "050f180177b7e6b7454be7bd0ba1ff92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8121,1686 +5334,1736 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:55:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "adfb1dcb-7c00-4289-9fdf-a792360d7c77", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "410606ef-4306-4b61-a0cb-fc3715748e45", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032649", - "deletedDate": 1560804330, - "scheduledPurgeDate": 1568580330, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/32655032649/abf68a48d8864363816f6c929f1d8a4d", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032649", + "deletedDate": 1565114159, + "scheduledPurgeDate": 1572890159, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f32655032649\u002f41f6124b87994952b7151d2173c2b50a", "attributes": { "enabled": true, - "created": 1560804305, - "updated": 1560804305, + "created": 1565114153, + "updated": 1565114153, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503260?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503260?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980fc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e84b11d961ce2a7f52a6cc7c895a8427", + "x-ms-client-request-id": "54916856d964001770a867eb01f5466b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f350a967-bab9-43f9-935a-0254aaf819c7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "044528c6-2b7e-4865-8cea-29836994bdf0", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503261?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503261?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980fd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2f366b241d23fc04b34b06cfb7f8ae54", + "x-ms-client-request-id": "a51b9f8f24b7d8cd9841ae7945e8aacc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38838704-d4ae-4a74-b4be-732199adf4bc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c696090d-76e6-47b5-85e6-ce5ac2f1b2d4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503262?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503262?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980fe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f8e1c200694d901ac00da0e8e125f9cf", + "x-ms-client-request-id": "8a2cf4e4114bd8a2861cdce6ae6a3b0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f987b6ac-1fd5-4fd2-9a72-40800d6d594d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cd5ccb6a-c730-4af1-b4db-f2a7f94372e9", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503263?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503263?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42980ff-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f4161be67320bc4f0c4f34835ab0735a", + "x-ms-client-request-id": "cb6e8569b22b32d89ab9bc222b9dba88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b07974dc-61c9-45c2-8941-b844eae8674a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3e755a52-6d5f-4476-9534-d7321af9dc41", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503264?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503264?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298100-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c77c78f88c78bbda50a56f167d1c1b8d", + "x-ms-client-request-id": "0c069bfdbbc97d20fc421f9a47e6292d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f09e910c-22c0-4fb3-b20a-0d6765f2e582", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9f7ce096-cbaa-4c4e-8fbc-b312a304ce42", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503265?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503265?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298101-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9be83651b9e18d347225ebfe3497360f", + "x-ms-client-request-id": "c0109f05df7931a01cfaef92547fade8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c3886da4-b632-493b-ad84-7d337cdb8388", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13306952-fe7f-433a-a71c-fe8896432c5d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503266?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503266?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298102-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "68f0469a32a95957405ba37a04393ef0", + "x-ms-client-request-id": "13e954612f63ad4564f0cfe9933deab4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "832ae6fb-58e1-4fb0-a15f-38f3d10df997", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "315c07a1-c49c-446f-b468-8e193835b7eb", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503267?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503267?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298103-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2331a633d7c83f7843ee5453a0dc86b9", + "x-ms-client-request-id": "8b1d8f8ffa8c1e0efbd5efcecb8d297c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f8844748-8fb0-4937-9539-023a2d4ad192", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e94cba2a-49ec-4a90-8f54-f9bc917dc30f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503268?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503268?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298104-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "377c5f6fb22c1fe3df8e5a8615ba8939", + "x-ms-client-request-id": "f339369416fcd5c959625b8810b79edf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ece397ac-c0d0-4d66-b8c3-7e00ebbeeef4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "11b7b445-0f10-4623-a569-75046b6db2be", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/3265503269?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f3265503269?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298105-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8ecafbe61265c247cdb024bbde03b964", + "x-ms-client-request-id": "c5033b102162675c45cb178e4077e2d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:47 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "144db691-eac8-4d12-98a0-772e0c9305ac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "78e9ce50-43fc-4632-9652-7d1c3c08d85c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032610?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032610?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298106-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a40aead406bd80c4c31243397cf12989", + "x-ms-client-request-id": "5c5452c7f60478b7c54732299e850e43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "62678ec9-e224-4eb1-a518-d5ec4ff2151e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "00426d77-1f3c-46eb-bb7e-2bbb85827316", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032611?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032611?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298107-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a56c1a65f8125c5418b9697b8d2840dc", + "x-ms-client-request-id": "90bd1036638a721adad1ad31fe3a95e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ba7b5af0-137f-45f3-af4f-39b42e24781a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1226a58e-71ed-479c-a699-8e5ce516a143", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032612?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032612?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298108-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2bb2f6d5e4afdf7c3649ca53ce0d46dc", + "x-ms-client-request-id": "bdc1848041621adb838aff1aef32c9c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5b5a9d1c-53ba-49fd-9e34-bb382adfcfb5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "34b3202b-d507-477a-9547-36c7e8525be1", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032613?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032613?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298109-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c3569b861397dc5296ad8b049d48f29a", + "x-ms-client-request-id": "2f58d4bc51b9634c38e182324885798b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "05c23d53-e43d-43a7-af6a-5751dcd1458a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "66be958e-749b-41c8-a90c-e109356ace8b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032614?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032614?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "856367d1fe3f80d99e8c6fc82d008d0b", + "x-ms-client-request-id": "19a950b250c4f4e135a30dff64ff83a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "66feecc0-c6fd-4001-8141-6a3d9641da18", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2c689fff-9557-4ae4-816b-61076f7429a1", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032615?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032615?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f2f48c727dd2c244a4d69501597842ed", + "x-ms-client-request-id": "2a74ed0865e22e28375d8581bea8d1fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d34200cf-fbbd-4e04-a4ef-215ba4f72d09", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8e0cd646-64b6-4fba-8cb0-31a8c0a00ee8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032616?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032616?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "66813056c1a9889dc1d5240aa489ae95", + "x-ms-client-request-id": "9e687411b0896cfcf363fa15444dff38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e3979567-f9f8-46aa-a986-648e8552acd0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "276c4222-fcf6-4d43-8253-1af06b393ff4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032617?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032617?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "10918020005353c823a1e06868d72626", + "x-ms-client-request-id": "5a2adb5e4e114ca8277ae167ca5f368c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a0829fbe-0940-4783-9f9c-5467eaf8a0c2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "14fed7fe-d916-4717-b048-10c5d385c7b7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032618?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032618?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fd72814a267eb061ef6c30fc583a1e1b", + "x-ms-client-request-id": "f0ee0fd2e497581ef108377e6a12e9ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c63cc2cd-550b-4278-a381-8a22c7de8cf1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "95d79a79-fd72-462e-b940-c05b53cbf22c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032619?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032619?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429810f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d9e1002731e6559a682e4307e0341fea", + "x-ms-client-request-id": "e3224d5d767ec2eccb1b760fce94a193", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:48 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bbc9b838-e7d4-480a-b83b-fe6392abf4d2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8975c2c9-7079-40fd-8b4f-d97851aa6c2b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032620?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032620?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298110-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "23c0feaeb117f9161ee021e7d0cbfbe8", + "x-ms-client-request-id": "35436e2d0f5e79a0bcd16908162ae215", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "52464af3-a04f-42ac-b9d4-232cd6cba62b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f50750b7-0092-49ad-8edf-1c134433eb26", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032621?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032621?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298111-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6841c5834df6183fe61c9450e359d0ba", + "x-ms-client-request-id": "7d09f690523d5b0d232b257c6e0f895c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d5b61efb-8b74-4412-9ef1-5d898098d6fd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "acbdffeb-98b5-454d-a5f0-6482a9498340", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032622?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032622?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298112-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "594d464dfa797504e9e8bb0510b3859c", + "x-ms-client-request-id": "fc51a466b4cf4e8baca926ac0de3aba0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fdc3f559-fb7f-4742-9d1d-1012cf86460f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5fd085c2-bf28-4778-ae7b-6cbdf554c46e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032623?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032623?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298113-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1b845a32b6f361f3bfa83cfb1cc515c4", + "x-ms-client-request-id": "d77e6139238bdb5661e81233e9230bad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0084fd72-f709-4446-bb7f-f57b2ca150ed", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "558a02cd-4173-40dd-9e5e-14409531e7df", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032624?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032624?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298114-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8a996610a17d886fc1cb7f0d92390733", + "x-ms-client-request-id": "71a10d48e6d9db456abad0932b604e3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0f1e703a-daad-4b4b-b34d-7c77bceb975f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "87dc73cf-74e8-4a0c-a280-83b3ec483a7a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032625?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032625?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298115-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "881df796b5d596c752ec9ad1be095923", + "x-ms-client-request-id": "0c43847fb19042d04e759be7a2586489", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7c49d5be-96fb-4426-afea-ae5d382b6e84", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a398c749-7df7-4207-9b5b-5e5bb91a5129", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032626?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032626?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298116-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a9f5f6d2fb19911febfb592737e6ce85", + "x-ms-client-request-id": "0064789e394153c71ca36dd152c2af00", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1eacd0b2-4e26-4dfe-bef1-221df7c5a550", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "80c28f4d-442a-4949-9015-901eca33bfa4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032627?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032627?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298117-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "246408a08da85aee9f023791079dc9b8", + "x-ms-client-request-id": "65b3d299fee0961d3c5e23634a5e3911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "50d3f84c-a607-4c2d-b1ee-5ea9ed6e8afa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d34fe63-79b5-4415-a6b8-5c4585381164", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032628?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032628?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298118-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9b3a5b725e439a1ad88c9cd95b9f5f6b", + "x-ms-client-request-id": "b3f447554efc45fdbcf0f0ed44fff08b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:49 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aa7f6ab5-01c8-4036-ae4a-c4ba8aaa4951", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e336e425-47df-4bd7-9351-e8567d203ef8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032629?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032629?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298119-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b631141d34a4457b089a0a16c48d8a4d", + "x-ms-client-request-id": "cf4d9ac6ffa59fa85bcdc3e3166408bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "424dc381-7d94-43f4-9b3b-1a5aa6867d83", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1c7a9178-6d47-4d68-9fe7-0e35a451fd94", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032630?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032630?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dbb5a13233ac4242edc94b1bf014ffff", + "x-ms-client-request-id": "0b7b5b69fbce4b03d56da9ef0e2f523c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b95cacba-b93a-4b4e-bf8c-96806d9bdb30", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f9aa5faf-3056-4723-8e27-f6f4033a12e8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032631?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032631?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f273cba3126c3d13dff593a85304d64b", + "x-ms-client-request-id": "b09c976e6911566c9f54572f8a1a2f58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2e392992-c09d-4637-bc01-ec364bec82f1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c0c2241e-f142-43c1-a318-0d4907b35f2e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032632?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032632?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "baa74e0283eaeabfd2efc9dae86054f3", + "x-ms-client-request-id": "e98332e8e583cabd9701fa3856b9912b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dfc05be6-1b5a-4c1a-8d73-b703cc860ba9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f553a8d1-e321-413c-a897-584af1ea777a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032633?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032633?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f8730b9b97191fe18d77fbb69f99eee9", + "x-ms-client-request-id": "7f74877a57c800acee256c79a4d4c1bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d3077e74-fc38-4db9-88db-4b4a9fed1a26", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "edf7ea69-1fb1-4b10-8c34-6bde0bf73126", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032634?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032634?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a11900f3446c1f140b89207d4939557f", + "x-ms-client-request-id": "db07513e69ac89b9d9d1190f6f3400e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4175a614-856e-4644-a0cd-ac5bee85ca65", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5016e00a-bd81-4c78-a7a3-01c08dca9e9f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032635?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032635?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429811f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "480ca0a0de916a316d882c7387084b38", + "x-ms-client-request-id": "03b42bc3afa5908f8683fa5d794426c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90d47937-5448-403d-ae37-f67284602951", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "90a892ee-0aca-4ccb-828a-4cc07b63dae2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032636?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032636?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298120-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e7e7df00b2465686f653ec907664d553", + "x-ms-client-request-id": "04f93f40b5b2117fceeaa6f63e9d91ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a704f456-1688-4c89-ae76-27b23457741d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6eb42b8c-dadf-4a91-9675-06cd4b0e8155", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032637?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032637?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298121-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fe167c21a68c1458cfae34e418a19802", + "x-ms-client-request-id": "78b58625be1f8e15c17655286f5b1094", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b7e8cfc-14ff-4ffc-8766-ee1f310d9ed9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "27a02716-94d5-420e-a15e-267435f09ce6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032638?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032638?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298122-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "697ce73e6d52ed381ab5523df1a0f409", + "x-ms-client-request-id": "30ce56aafb3a0e33aba334bb099951e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:50 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "42b0514e-21fa-4220-a039-bc2b83d179f2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0d7af49b-a099-4a3d-8faa-96dba76e3d81", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032639?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032639?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298123-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0b51d8b34cf25aac87d218987ea23e54", + "x-ms-client-request-id": "f2373ff1ae8f82a2296b433b6057a272", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3e1ff2d0-312b-4bd5-b390-9877a5370c65", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "722581a2-99a5-45b7-8f3a-d721d7bc1623", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032640?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032640?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298124-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8e52e9bb6be7b4014328e4d6531a232e", + "x-ms-client-request-id": "e84b11d961ce2a7f52a6cc7c895a8427", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aafcb4de-e7bf-40fe-83a4-9f2a1399f080", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "01e75c68-650c-4d17-997c-1b911d24290b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032641?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032641?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298125-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3f302bba8c50f1103b22e28054a06f77", + "x-ms-client-request-id": "2f366b241d23fc04b34b06cfb7f8ae54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f53bc1e0-fa46-4c63-b872-fdd4f69d84cd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "52d02c05-1b90-4eef-84ac-3a5737daeeff", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032642?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032642?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298126-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "0782fe77654e4721d79cc8ca67d5076d", + "x-ms-client-request-id": "f8e1c200694d901ac00da0e8e125f9cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "04d05228-1264-49a2-b701-b531c55e9c9e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ed14958c-bcf5-4696-bc78-f929bbda621a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032643?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032643?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298127-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "52dde9afff712e03d96053c589815fa2", + "x-ms-client-request-id": "f4161be67320bc4f0c4f34835ab0735a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd763f48-06c4-4b44-8aea-3cb7b15d2ec9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "863fda25-9835-4ecd-a770-11a56d83302e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032644?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032644?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298128-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "555f6cb81b9755e009e868b3c3468965", + "x-ms-client-request-id": "c77c78f88c78bbda50a56f167d1c1b8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c47c228b-ba3a-41e9-8b13-6fcc021e793c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc3f5993-0822-4604-a7c2-52bb41c23030", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032645?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032645?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298129-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6ad1741b1dc27706fa532eed125cbe55", + "x-ms-client-request-id": "9be83651b9e18d347225ebfe3497360f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ad181af-5a35-4d4d-8357-a78ff8b004ac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "adfd9031-9703-42b9-8298-b982fa78292b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032646?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032646?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429812a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "fa11253db17693d50988498897506a93", + "x-ms-client-request-id": "68f0469a32a95957405ba37a04393ef0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f427b31c-3de6-462b-89b4-aa48093f7fb6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "46d7e2a9-edad-453a-91b1-d668d4625817", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032647?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032647?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429812b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14aaedd7f4b09be066e75a43ecf343ac", + "x-ms-client-request-id": "2331a633d7c83f7843ee5453a0dc86b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:51 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6a6e3329-dcaa-432f-9d8f-ca6aa6188e32", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13cc4d61-64ee-4a78-801e-1fd35be52e88", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032648?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032648?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429812c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9e76122a8e3469ef9f3d6139d37de0aa", + "x-ms-client-request-id": "377c5f6fb22c1fe3df8e5a8615ba8939", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:52 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5d2c6bd8-c742-4458-9066-459087202ebe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2bb4d3fe-cf11-4b87-ba38-538be24c44da", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/32655032649?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f32655032649?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429812d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "24169be8aab248a54576948e5791a616", + "x-ms-client-request-id": "8ecafbe61265c247cdb024bbde03b964", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:45:52 GMT", + "Date": "Tue, 06 Aug 2019 17:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "136307cb-535b-43d4-861d-16577efac5c1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d5af8468-159b-491d-b3c9-b96f7d00c4c1", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "679690340" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsAsync.json index 9514a7a9256d..6e41927cd0a6 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640590?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298346-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "4d9e0da820b800532b0536b0fba61173", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ddc61e10-aaf1-4f5e-bf13-9476d74022f8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298346-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4d9e0da820b800532b0536b0fba61173", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:22 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ee2556e-6de7-41c4-b8d4-11dfaf2d4421", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7f64a97-2ab4-49cc-a159-f4db88b4ce40", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640590/468f4d8532f442dab53ad98cf89f5dca", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590\u002ff171ff27580043cab8f8f68276205c6b", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114467, + "updated": 1565114467, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640591?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640591?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298347-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d41dbdfcb5f33de56539bb74b1cb84b7", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b45cd28e-27b5-4185-a00e-d979cd2311c9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "547e85fc-43c1-4e80-a90b-20f246c2e910", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640591/3dda663fd6bb4fed9fff0487c8bf1c4c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640591\u002fe7b933a245904f88bc8acbda4385a5e8", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640592?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640592?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298348-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a28464842167cb1a571f460547defe9c", "x-ms-return-client-request-id": "true" @@ -116,42 +160,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8415507d-cea8-42bc-9754-233144e1596f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d973245d-98a0-4619-adda-b03eed775443", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640592/bd7dd26346a04485826a06c6d0bd7c23", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640592\u002fb83e952cb2ae4f90ae9c38444d8eb116", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640593?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640593?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298349-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "27daaba7f2f8f3a72760e87e64de4e60", "x-ms-return-client-request-id": "true" @@ -163,42 +208,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "63ac60bf-0795-4fc8-9c42-b197a7eb0528", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "df1f0978-2ec8-440b-bd8c-daad4883e1ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640593/ec51701b531446c88d6ca12a913a36e2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640593\u002f7151916e290b47928042b3e58cddf853", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640594?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640594?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "972b7e816e22db0ba2527cd46edff687", "x-ms-return-client-request-id": "true" @@ -210,42 +256,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "021485b9-b269-441e-971c-4a43fc7f1cbc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d05ba48d-b7a2-443a-97cf-84e126d110c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640594/415b3f573040426598305b15ac1f5ad8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640594\u002fadf0cee75cb443d19dff01e7d0760622", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640595?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640595?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "05cc1f3b5cf092bfbd907a06399b6679", "x-ms-return-client-request-id": "true" @@ -257,42 +304,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3f37e95a-78ef-405e-b7de-79f0d10b6404", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61b014ca-eae2-491e-8b14-4848d494817e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640595/665dd88560134c63bb3c0d3582e4bfdd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640595\u002f5b0d4d24bd8b460796a98ef0c633affd", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640596?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640596?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c884e6d067b339799fff84a575d28548", "x-ms-return-client-request-id": "true" @@ -304,42 +352,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3ba3e5c1-5337-46e7-a622-51d3b547480d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5c309d43-f98d-4977-8de1-323d113d973f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640596/cd9edc713ce841cba78536633714ad6e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640596\u002fc9d197114bab45ddb7b421dba737ce35", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640597?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640597?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4543606a4812256fbf98d992f305a106", "x-ms-return-client-request-id": "true" @@ -351,42 +400,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "073f59e2-25bb-4f2a-948c-f6ae5e5f6ec0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "50c4141d-fb86-43e0-b88e-c87b77a1debc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640597/e07fc767c60c43fba1a0212d4e4a0b4a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640597\u002f15d5304080384694a175099f639fc61b", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640598?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640598?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "870403ec2e5bd3d4a69366f1d7191ceb", "x-ms-return-client-request-id": "true" @@ -398,42 +448,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "02daf573-d6c1-43bd-b387-f28f4dea73db", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fa14eab3-a1d2-490d-a079-fc27d8b9a56c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640598/d5eeaa823edf44f6b0f7e04677860227", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640598\u002f5e58871743af494a8aa3a34cf9bf8512", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640599?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640599?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429834f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d89b320a21588766765f081a8de6459a", "x-ms-return-client-request-id": "true" @@ -445,42 +496,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f7697274-abeb-4f00-8790-fb663bad8164", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "95451204-0886-447a-a9ac-ec648b4a004f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640599/16bd4a4ebd694f08934f4cc50459f9d7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640599\u002fc56babc4d421494b847806482bdb3b33", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405910?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405910?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298350-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "72b97e5dfdce3cec8c6f9e7ee27e4da6", "x-ms-return-client-request-id": "true" @@ -492,42 +544,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd1612ec-fc64-44f8-8ce5-125035e5c17b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5cc3c79b-9bc8-4f5f-bcab-bb1285ea9b11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405910/42f9c957983d4f63a273f5a4eda5df2a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405910\u002f91d475a520d241429d837829b93cc5c6", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405911?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405911?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298351-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c087ee7bc969caae9c7c11fc25b946bf", "x-ms-return-client-request-id": "true" @@ -539,42 +592,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b0a93295-7530-4a68-81ca-42970aa04e8b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ed06a120-59f1-437f-8b2a-417a14bdb739", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405911/96fc3f486b5d447490ea0789d572dc77", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405911\u002f7e565b5cdf30443ba3fcaa1668638a61", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405912?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405912?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298352-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5993cb4eaa600d1c455f4be882e8a4f8", "x-ms-return-client-request-id": "true" @@ -586,42 +640,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "651aea63-4aa2-4616-af61-07dd78c5e96c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c868bb88-4fad-4e78-bbd5-6c91d91d4a4d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405912/77e8ecf7c3ed439f8cf3690d635064be", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405912\u002f5b5f36f180fa44dd897447ce7dec4397", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405913?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298353-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9e9e6211845e9430cfeed651ecf017d2", "x-ms-return-client-request-id": "true" @@ -633,42 +688,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c392866a-b22d-46dd-b47c-5abc7d0a17d1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0f85eaae-5a11-4a0e-a109-daffe12f02e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405913/490308bed6894dee9db2248f2d931b24", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405913\u002f26cbb12fc4cb4262b6487f5357150f82", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405914?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405914?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298354-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1730df29f4ead145d17a7b0a7dc648b3", "x-ms-return-client-request-id": "true" @@ -680,42 +736,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:23 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "464acff0-db39-4220-a4e5-00cd55d5bfa3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1756f0d4-9a6c-4b2a-8386-4e5e65cf6036", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405914/11b7c1cba32c45b0890b4b8fbeb08993", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405914\u002f086615c550904b259288e4242ddf2b27", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405915?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405915?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298355-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c2ea18d7a71bc9609bff8971d4cb2055", "x-ms-return-client-request-id": "true" @@ -727,42 +784,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d5d0458b-9b3e-4586-a882-062e1eb42cb7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "900a52d1-35e6-4f93-8a0c-e0259bd4faaf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405915/57519580b76744fb9c769ded450328db", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405915\u002fa30c1426938e4c208cceca557c3544c2", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405916?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405916?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298356-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a3be78488db81d0e1ccdcce409251709", "x-ms-return-client-request-id": "true" @@ -774,42 +832,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "086dd3c2-8aaf-445e-a6bb-3adef38c4415", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ae34e822-dff8-4d5f-a90e-804152c02c21", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405916/4d1582c9302447d29f9075aa10d9acf7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405916\u002f8d68b465c4ef40bebdff27a11b87fe2c", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405917?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405917?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298357-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d37922a5540581b77e667bea6ad4fd06", "x-ms-return-client-request-id": "true" @@ -821,42 +880,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "864044f6-1e55-44b1-964d-fc9db0be9c4f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e6e4571a-2682-4c9f-ae1f-2ab4f342fc6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405917/95a7a3e244434a468e2094efb24a00b0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405917\u002f182335f2c2f44b929129864a25d5df42", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405918?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405918?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298358-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "04c22559a50749fb0acda64ddb7cc075", "x-ms-return-client-request-id": "true" @@ -868,42 +928,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "46a39968-6499-4513-9afe-532e594f5ef3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a430c413-9de7-4019-bfe5-db8a0a941a4c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405918/08ff454abd1d45479dc8368ede7bef16", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405918\u002fc8d1009c87584603b3a200ea57799361", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405919?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405919?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298359-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b1cb7fe84d51f34fc03d24521123b348", "x-ms-return-client-request-id": "true" @@ -915,42 +976,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49c038e6-f518-474d-a606-85c60b2c220e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1af8839e-297e-45fe-aca5-8e51dd8a373d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405919/3a176ebbeeba4a529c40cb9a6b8880f7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405919\u002fb8b4a23bcd3e410393618bfaff591567", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405920?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405920?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e38ac5d0126300022730c938ad6aa602", "x-ms-return-client-request-id": "true" @@ -962,42 +1024,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d4b938f8-01e5-4440-ad3c-1f42be2cd64e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6c4a713c-08da-43b3-812e-31d0366e3623", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405920/cbbeb04fadad4d278d377087ee5196b9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405920\u002f42162793c3f047c39d073a8d5a37e103", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405921?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405921?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ea0206a64b080cb5d5ce43ca80a937e6", "x-ms-return-client-request-id": "true" @@ -1009,42 +1072,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a8d9849-f344-4992-adf0-43a3c7d92e08", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "08c5f713-072f-4039-89c9-21cafeedc578", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405921/03160f93f4744077a4850e53c470818f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405921\u002fc554a4d880d845ff8b902acc73f47a67", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405922?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405922?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "157d5e19dcf1d5127dcb892184174656", "x-ms-return-client-request-id": "true" @@ -1056,42 +1120,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "89cd9379-77a2-4a57-a4cf-b38fcc51255a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "107b35e8-ba31-4371-9ac9-cbbe2ec430f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405922/1c561e68ed354b4098680d3594002ed0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405922\u002f8497c73522ef44539ddb0b52ac475280", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405923?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405923?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0bab2296c8208440107e0e94ce38807e", "x-ms-return-client-request-id": "true" @@ -1103,42 +1168,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4c82f47f-9a6e-47a5-b6e3-7f5be5c25c1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "52b1ca3f-569e-4b95-8f1a-9ea8131d6845", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405923/2e5ce539bdb748beb423712fe4911c00", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405923\u002fbcfc1d21c9414107924e390600e6896e", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405924?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405924?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4f1ee2f891ecc910f42c6d3cc19388be", "x-ms-return-client-request-id": "true" @@ -1150,42 +1216,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1ada5fee-b479-42b9-bf56-a8f5079d90c2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bdb7ff22-92ec-4fa0-8c90-cfda2cf57094", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405924/e601372f8e6d49eaa0eb7198df2b6270", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405924\u002f667be76b6521404fa1abc73375418163", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405925?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405925?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429835f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5e33ed882cfd51c51df90473cd7e0745", "x-ms-return-client-request-id": "true" @@ -1197,42 +1264,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3562a9b1-717a-470e-8f58-5685b20f3277", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f52e80e1-ed19-4941-b9b7-93edefbd422e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405925/11477972099b431194a449b79eeba184", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405925\u002f493648b90086425e9f671d21b61d5ff4", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405926?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405926?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298360-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a1290b4bf6f8056911e217f45b03c27c", "x-ms-return-client-request-id": "true" @@ -1244,42 +1312,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd073dc5-33e0-4f16-8261-0dd0560a1421", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5cee573a-d7d9-4329-b99e-54c2d711fbe0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405926/34466ebb57d84d66b75c592d5a1a5e9c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405926\u002fd00138fe335c4b28b6ba61268715be6d", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405927?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405927?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298361-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e10b50f52104cb811ccd31f38c9dfc76", "x-ms-return-client-request-id": "true" @@ -1291,42 +1360,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:24 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab947ede-9d8e-4c74-9727-7afe20f6be22", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3976921a-bd9d-4e9c-b716-fbb3bd347203", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405927/5379f0512e40452b862dc262778d8f5f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405927\u002fffca73b8ac864407b19a7e6f8633fb6c", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405928?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405928?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298362-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b6f12825e66a91c5832e4d1b15d1f61a", "x-ms-return-client-request-id": "true" @@ -1338,42 +1408,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e0e8e5b7-4b1b-4407-b3ac-99ac0a29c62a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "162ee31c-8c61-47bd-a4bd-895621b49ca1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405928/9da6ad968a164fc493d2832fcbebc125", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405928\u002f63c97d5fc55f4081bbc3e762b8b15a3b", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405929?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405929?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298363-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7d7d8737267229408a5d852bc4767873", "x-ms-return-client-request-id": "true" @@ -1385,42 +1456,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f1806995-33b9-42c1-b552-e55135c8d4ec", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "161f78cd-caca-43f2-9873-c581dd850eb2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405929/b5facf35db014e6a87d70c912268b628", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405929\u002f6626d7e17cf74a539ad2ac9ec9e41d36", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405930?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405930?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298364-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "33cfa0e50b110e118a795dd5d466b54b", "x-ms-return-client-request-id": "true" @@ -1432,42 +1504,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7b645edd-bcc4-45bf-90f1-ac1c1811a318", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2da7e1d1-b4ee-4606-835f-9d070b900aed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405930/aee14266b9ca4bcf8cc5b844464da2b6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405930\u002f602ccc98a8fa4e0a9c626e888235f16c", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405931?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405931?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298365-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "05bc17d67e1ffe03e7c82c0d6199cd0d", "x-ms-return-client-request-id": "true" @@ -1479,42 +1552,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "395aa7ee-6c53-4b2d-8009-03072c49b26a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4f6da8e5-c6eb-48f3-809e-e1705474b847", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405931/7538c5687c49471084d7db6bb94b3019", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405931\u002f7999cd100797488489c34c5e4419afaf", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405932?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405932?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298366-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7435d9b6c3022b08756ef3f9c96a5523", "x-ms-return-client-request-id": "true" @@ -1526,42 +1600,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "64f77434-13ee-4a1c-baea-a351ffffbf22", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "90650950-f529-4d5b-af52-27acd74f310d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405932/038ea678f05743438bff31bd84e047ec", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405932\u002ff1d5ebe5b4d7409dabf813f27fe6803a", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405933?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405933?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298367-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ad543aa872ba67549dd04b49df04adf0", "x-ms-return-client-request-id": "true" @@ -1573,42 +1648,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1f924cac-9960-4f0d-b60b-5fcad17b5bbf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "58f1de3f-814e-442d-9565-c5bd02342184", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405933/96eaa6568e424e4cbfe84671d18c9479", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405933\u002f885e392dee2e437e8367660423e08941", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405934?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405934?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298368-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fa1f4fac403113490e918fb08a0a357d", "x-ms-return-client-request-id": "true" @@ -1620,42 +1696,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7cbc2880-ab1d-436f-a96d-ec53064c30b6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9729982d-fc75-43c8-993c-56ba75b4487d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405934/04b416ba1267487e9b6f6cb5456d9c37", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405934\u002f4e9d0114e92d42b7bbcb2c8668a3b6e0", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405935?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298369-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "276508722044435385cdd73177bf4b70", "x-ms-return-client-request-id": "true" @@ -1667,42 +1744,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e030a40a-71c8-4386-93a2-bef3727a3dab", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "50c66565-88c4-44c7-bf9e-eb12aa236b80", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405935/494b5f84d0c84856b43064ef68a2b4bf", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405935\u002fd26bd169520349ffbdd181fb01c6d871", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405936?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405936?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "794c02c15a4b67f2f0419e29e3a4dc93", "x-ms-return-client-request-id": "true" @@ -1714,42 +1792,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "09f66462-0bd2-40cb-806b-140bddb59719", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "60ea32fa-ee27-4cf6-b2aa-017bdc30f243", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405936/08808c7bb0a247d884c19ab987a6c13a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405936\u002f6bc0f925bfa1418caf85744044740e06", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405937?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405937?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d7d6ce9b869f8cacfcdb756469179b4f", "x-ms-return-client-request-id": "true" @@ -1761,42 +1840,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "95df8a8f-6089-4956-9b60-7ff82641029e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9ebaf692-c9ed-4f2b-b595-3f15b0f5a973", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405937/4cbe86f4f1ce499daec1233e2a87e82c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405937\u002f32647e9a97d2405485ff7534c42afcd4", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405938?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405938?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "88ee1e45bcbd173215fd3603812a60e0", "x-ms-return-client-request-id": "true" @@ -1808,42 +1888,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7071e65a-f20a-4437-a2fa-28f4a3978a8c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4366462d-a151-4ccb-b81b-c6a807ead34b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405938/23ba6a8380874542a11f346e83cdc1ed", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405938\u002f8d824b0f1e464b4f9e3fb19f554c8a74", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405939?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405939?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a99543f073e93bd156c07c6fe58efdd9", "x-ms-return-client-request-id": "true" @@ -1855,42 +1936,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df5cfb23-b895-4591-9eb1-c4376b616ec8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a82e81e0-96e6-4d93-912b-78fef57280ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405939/0cb4948c3f644df59e5624bfea8b0eb0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405939\u002f772ad212199e427aa47f1a020f163397", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405940?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405940?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c4e34ea554b5dfd59bbec2a14fa80ad2", "x-ms-return-client-request-id": "true" @@ -1902,42 +1984,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "58e928a7-5e25-41dd-a0c0-fcb61e186a0b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bd668518-d23d-4ed3-a827-a3d8ddfeb77d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405940/db761588125a4f21ada3c144e4175b08", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405940\u002f1cadf47cd02946b584a75465d4df3105", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405941?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405941?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429836f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2573947bf182d2664db332fd3fc33286", "x-ms-return-client-request-id": "true" @@ -1949,42 +2032,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0929f9c3-199d-4144-9355-fb206a306e3c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9ff3d0ad-0d8e-4098-afdf-2443ca78cce7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405941/80cb9dc036ea417889c6a58d1211d69c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405941\u002f56a552d1e2df4814b0ad16569a84db5a", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405942?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405942?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298370-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "325d5d009b469c2b6eb60e2ab12febad", "x-ms-return-client-request-id": "true" @@ -1996,42 +2080,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4af27639-f1ab-494a-8433-43240e872012", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e2c9e9ae-56c2-4c25-b9df-424a5043a039", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405942/df278562ddb645909aacec8d10c2d883", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405942\u002fea75b3a21d7d43708570241af34f19d6", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405943?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405943?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298371-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "50f3a9b6d71bb356e811760121d89fd8", "x-ms-return-client-request-id": "true" @@ -2043,42 +2128,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "642eddae-f0d7-4785-a4d4-06470a8f700f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "320a9fb8-ab1a-4085-bdeb-3cc7901e9b8f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405943/a0de41c0008241638d95db292e0135b8", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405943\u002f4f7646c857814798b443737d2deca98e", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405944?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405944?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298372-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f2a13b8cd74ae08b68d7b7cce33b201e", "x-ms-return-client-request-id": "true" @@ -2090,42 +2176,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "92f54004-7b6a-44bd-8c9f-e24b65221537", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "af2d8d17-a04f-4fba-8dc1-0850aaa92fa8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405944/110a12fb663d459293d4461c158eb7ee", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405944\u002fb14ce161051645b79825d0f9c28b1421", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405945?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405945?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298373-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "954785c7e1cf286b06aa4a3524297a96", "x-ms-return-client-request-id": "true" @@ -2137,42 +2224,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "31415976-385f-4127-9d4f-14f8bc0861bb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b4a55417-3d1c-4e69-a26d-fa7adc0e41cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405945/5a808dab06074b699ded9e56133a1045", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405945\u002f2a86b6dcc6a94fe0b6f8eac2ef2d8e9e", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405946?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405946?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298374-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "759e3516f98ede621e13e743208acfac", "x-ms-return-client-request-id": "true" @@ -2184,42 +2272,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2d18ce4f-71ff-4262-8fc4-c32883f257b5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "08b737b2-dda7-466b-b080-5552ae226c3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405946/90d1c05e021c42ada05a69817cf82f00", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405946\u002fb5feebe880634807a8df93181b7f7b88", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405947?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405947?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298375-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9c3958f00a90aa08d078eba08c56bb3f", "x-ms-return-client-request-id": "true" @@ -2231,42 +2320,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e051252-bbd7-4ab1-af5d-eadb935eca40", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "590f6979-8f4b-4b6d-9274-0ce08b9f52e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405947/2fab6a87aadc45749388353d321d5f9f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405947\u002f5784e081ceb142f88be2fd73df9aaebf", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405948?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405948?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298376-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "aeb5205cab9dce90236877bcf927087c", "x-ms-return-client-request-id": "true" @@ -2278,42 +2368,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c6911adc-0d23-4571-a97c-5076f2e406ab", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e23b2085-2862-4351-8582-025edbe27c34", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405948/2d978b65e8b14040852eec4653572c7a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405948\u002f56897677f36e4ac2b973d8030c41e87c", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405949?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405949?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298377-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cc459ddadeef0c052cf3a4150dc151c8", "x-ms-return-client-request-id": "true" @@ -2325,41 +2416,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "44296094-6a16-4aa8-b609-0221035a9fa0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f7d40027-81c8-4874-aac2-ccc1ddb3bf78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405949/08aec79d69dc41ecb5671545b7cac945", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405949\u002fb272dff214054d73b066118fdf008321", "attributes": { "enabled": true, - "created": 1560804567, - "updated": 1560804567, + "created": 1565114472, + "updated": 1565114472, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298378-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ffe7a85721d4440ec86b7928924bb1a8", "x-ms-return-client-request-id": "true" @@ -2368,3385 +2460,530 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "463ccfd1-d5e4-4fae-9e93-4b5eb226cecc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHdSVUkyUmtSRE9Ua3pNRUUwTTBZM1FqbEZPRFpHTmpNek1ESXpOa0pHTkRRMklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "efc66f6fee107e4f1ba981aa067ac061", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "451", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c5eb9542-57f1-4d1c-a5a5-8bbc01e1c625", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1019855369", - "attributes": { - "enabled": true, - "created": 1559845814, - "updated": 1559845814, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRReU5pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "5064af160940b9a78e00048465dd79e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "54c62d1d-7a5d-4360-b490-2757362f9b36", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE1EWTJNVEUyTlRRME9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9ea6fb4162fb69b75969e32b9f643d4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3720", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "19780d4a-91b3-4d1d-bc68-6980fe63580b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1097301718", - "attributes": { - "enabled": true, - "created": 1559845813, - "updated": 1559845813, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1098173084", - "attributes": { - "enabled": true, - "created": 1559757239, - "updated": 1559757239, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1109965623", - "attributes": { - "enabled": true, - "created": 1559767577, - "updated": 1559767577, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879150", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879151", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791510", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791511", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791512", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791513", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791514", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791515", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791516", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791517", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791518", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791519", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879152", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791520", - "attributes": { - "enabled": true, - "created": 1559861619, - "updated": 1559861619, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791521", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791522", - "attributes": { - "enabled": true, - "created": 1559861620, - "updated": 1559861620, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU1qTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e31117ab60e76668c80c6010eaca183e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4819", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:28 GMT", + "Content-Length": "4792", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "03b136bd-f1e4-4a15-b428-5c757d13f5d1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4b0b9013-5715-41da-8c73-6a83eb5d7135", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791523", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114467, + "updated": 1565114467, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791524", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640591", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791525", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405910", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791526", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405911", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791527", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405912", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791528", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405913", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791529", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405914", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879153", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405915", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791530", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405916", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791531", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405917", "attributes": { "enabled": true, - "created": 1559861620, - "updated": 1559861620, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791532", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405918", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791533", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405919", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791534", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640592", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791535", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405920", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791536", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405921", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791537", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405922", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791538", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405923", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791539", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405924", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879154", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405925", "attributes": { "enabled": true, - "created": 1559861618, - "updated": 1559861618, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791540", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405926", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791541", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405927", "attributes": { "enabled": true, - "created": 1559861621, - "updated": 1559861621, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791542", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405928", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791543", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405929", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791544", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640593", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791545", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405930", "attributes": { "enabled": true, - "created": 1559861622, - "updated": 1559861622, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1USTBOemczT1RFMU5EWWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0b68a03021d4b465f7fbf6d7257c1a2a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b0aecd1a-e6bc-4768-8282-0da1aeb5bc81", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791546", - "attributes": { - "enabled": true, - "created": 1559861622, - "updated": 1559861622, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791547", - "attributes": { - "enabled": true, - "created": 1559861622, - "updated": 1559861622, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791548", - "attributes": { - "enabled": true, - "created": 1559861622, - "updated": 1559861622, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/112478791549", - "attributes": { - "enabled": true, - "created": 1559861622, - "updated": 1559861622, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879155", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879156", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879157", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879158", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/11247879159", - "attributes": { - "enabled": true, - "created": 1559861618, - "updated": 1559861618, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1151862578", - "attributes": { - "enabled": true, - "created": 1560274350, - "updated": 1560274350, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1176680581", - "attributes": { - "enabled": true, - "created": 1559760348, - "updated": 1559760349, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk1qSWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4dd8b7c395cbe1f99340d6ee02a67f8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8b0a40b2-a292-4ab5-9675-48ffb4b3b562", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qQXhOekUwTnpBMk5EVWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "fefaa55032fb8978b15debeb6991404c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1536", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e84afcaa-2fe0-42a9-8b96-14a3211e3133", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1221328494", - "attributes": { - "enabled": true, - "created": 1559760304, - "updated": 1559760304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000010", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000011", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000012", - "attributes": { - "enabled": true, - "created": 1559771279, - "updated": 1559771279, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000013", - "attributes": { - "enabled": true, - "created": 1559771280, - "updated": 1559771280, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/12528000014", - "attributes": { - "enabled": true, - "created": 1559771280, - "updated": 1559771280, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1253030411", - "attributes": { - "enabled": true, - "created": 1559754839, - "updated": 1559754839, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE1UUWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "334d35f2cbf29a72a78777944b77b150", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6370e05e-b87f-462e-9dce-c337919f4f86", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE1qa3hOalUxT1RJNE16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "7f86677c1b81902f3e4e9c6ea90e7701", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "451", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a68f9ca-2f07-4720-9a53-3cc817458f22", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1343904724", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM01UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "ccfc8aff4b59859c325f5773bae43e3a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c00a133b-a370-4051-9589-29dd4258a83c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16VTJOamMzT0RrM016WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "026e9babc00ad6ca05bcf4a32f04f198", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cb4f5ca3-1b76-40bc-b4e5-8f2b19135d78", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE1UTWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c1957610e47a30f7cb014d22c4bcd659", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e34d30ad-3b45-4eaa-b474-6794baf52484", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE16ZzVPVE15T1RVeE16WWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "0ec26110759f3ef6bf25c79c56f8552d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "630", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "877d7bb4-576c-41e9-b348-360bcbb54128", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/149268810", - "attributes": { - "enabled": true, - "created": 1560269304, - "updated": 1560269304, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1518842896", - "attributes": { - "enabled": true, - "created": 1559755215, - "updated": 1559755215, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE5USTFOek16TlRBeU16RWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4462be6e7c4fc6bfa33e360973a81249", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "631", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f20a0be9-0800-4b60-851a-065df5473c32", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1564574719", - "attributes": { - "enabled": true, - "created": 1559772521, - "updated": 1559772521, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1568621995", - "attributes": { - "enabled": true, - "created": 1559757192, - "updated": 1559757192, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk1USWhNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "cd939be6e2429bf97f5602551d5ad9d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e513541e-cb1f-41cd-9e4c-a63657a6047d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNUlYTmxZM0psZEM4eE9ERTFNemMxTnpjMk16Y2hNREF3TURJNElUazVPVGt0TVRJdE16RlVNak02TlRrNk5Ua3VPVGs1T1RrNU9Wb2giLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "05b41fab9259940aa1fb6a613eedcb17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1220", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "36525401-8c80-4129-972d-da5c227077d6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185750", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185751", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185752", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185753", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/18670185754", - "attributes": { - "enabled": true, - "created": 1559770050, - "updated": 1559770050, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRFMElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "bbb67d1388648bebc5c7c4f97a6aa949", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9234cf73-bb2d-44f1-8968-5dc414ba02ea", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHhPRFpGTUVaQk56UTJSRVkwTmpWRlFUY3hRME0yTVRnMk9Ea3lPVU00UkRNM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "545d63640cf354f091ff2c4778975c92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "993", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2da757c0-48ee-49dd-9267-1c378d0b5220", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640590", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640591", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405910", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405911", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRreE1pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRreE1pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a042ea8b1ea4236e33284091cd101a37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4794", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2993828d-ce13-4e8c-811d-b44cc6e19756", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405912", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405913", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405914", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405915", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405916", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405917", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405918", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405919", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640592", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405920", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405921", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405922", - "attributes": { - "enabled": true, - "created": 1560804564, - "updated": 1560804564, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405923", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405924", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405925", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405926", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405927", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405928", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405929", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640593", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405930", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405931", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405932", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405933", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405934", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRrek5TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRrek5TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "dbfc2152778f06238c612a655ca4122d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4788", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9ca4efbd-b633-412c-bc59-f9d02273668d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405935", - "attributes": { - "enabled": true, - "created": 1560804565, - "updated": 1560804565, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405936", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405937", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405938", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405939", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640594", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405940", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405941", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405942", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405943", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405944", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405945", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405946", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405947", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405948", - "attributes": { - "enabled": true, - "created": 1560804566, - "updated": 1560804566, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405949", - "attributes": { - "enabled": true, - "created": 1560804567, - "updated": 1560804567, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640595", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640596", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640597", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640598", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640599", - "attributes": { - "enabled": true, - "created": 1560804563, - "updated": 1560804563, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1944099344", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1961436033", - "attributes": { - "enabled": true, - "created": 1559767547, - "updated": 1559767547, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730500", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730501", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU1EVXlOemN6TURVd01pRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "8f6d316a082846a5f53a20cbcb5e8680", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4611", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bf1a6637-4623-4fb3-b847-4595069ebce9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730502", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730503", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/20527730504", - "attributes": { - "enabled": true, - "created": 1559771137, - "updated": 1559771137, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2107873347", - "attributes": { - "enabled": true, - "created": 1560269237, - "updated": 1560269237, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593850", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593851", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938510", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938511", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938512", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938513", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938514", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938515", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938516", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938517", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938518", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938519", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593852", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938520", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938521", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938522", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938523", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938524", - "attributes": { - "enabled": true, - "created": 1559845798, - "updated": 1559845798, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938525", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938526", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU5ESTROVGt6T0RVeU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "57f4f4e5819b1402c63b1342f408c78f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4794", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a86aa2e5-a841-4365-89ff-1e8ea5248a10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938527", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938528", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938529", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593853", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938530", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938531", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938532", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938533", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938534", - "attributes": { - "enabled": true, - "created": 1559845799, - "updated": 1559845799, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938535", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938536", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938537", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938538", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938539", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593854", - "attributes": { - "enabled": true, - "created": 1559845796, - "updated": 1559845796, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938540", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938541", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938542", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938543", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938544", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938545", - "attributes": { - "enabled": true, - "created": 1559845800, - "updated": 1559845800, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938546", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938547", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938548", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/24285938549", - "attributes": { - "enabled": true, - "created": 1559845801, - "updated": 1559845801, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU5ESTROVGt6T0RVMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9c2713168aa2490e7bb6e65556583b2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b257b064-3280-483b-8516-49ac675f8eb7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593855", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593856", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593857", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593858", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/2428593859", - "attributes": { - "enabled": true, - "created": 1559845797, - "updated": 1559845797, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/260792721", - "attributes": { - "enabled": true, - "created": 1559755246, - "updated": 1559755246, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eU9EVXdPVGd5T0RreU55RXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "6780a9dabbafe9922e59c8edf56351ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "10d0c12b-5a57-4bd9-98c4-fdebe2698a8b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4eU9EVXdPVGd5T0RrMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "b8b49072ea375adde6abdbe49badbd6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2108", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "27f0e2e0-1c3b-46c5-8aff-dda88fb4750c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/29794703", - "attributes": { - "enabled": true, - "created": 1559749045, - "updated": 1559749045, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/299394375", - "attributes": { - "enabled": true, - "created": 1559760272, - "updated": 1559760272, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/322887001", - "attributes": { - "enabled": true, - "created": 1559757269, - "updated": 1559757270, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165740", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165741", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165742", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165743", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/3283165744", - "attributes": { - "enabled": true, - "created": 1559772497, - "updated": 1559772497, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/342770184", - "attributes": { - "enabled": true, - "created": 1560269255, - "updated": 1560269255, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/35473275", - "attributes": { - "enabled": true, - "created": 1559767038, - "updated": 1559767038, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRFM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4a67e40060875adf813e6d48c1215318", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "311", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b004f172-760d-48e5-bc39-2b1980722cd2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTIhTURBd01EUXdJWE5sWTNKbGRDOHpSa1EyTlVaRE56TXdNRUUwUVVWQk9UWkJNVGd4TURsR09FVTNOa1F3UlRRaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "c6e2f96483a3f0f7cc258004e0ad4e81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "494", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ced29dab-060a-4c63-b848-82e9fc5aad4f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/437739438", - "attributes": { - "enabled": true, - "created": 1559757379, - "updated": 1559757379, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpFeUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "10ed5a9c07fb1264b05a36f97c9499c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "354fed8d-0c41-4355-bae0-262abebbe8eb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODBRa0pCT1RFelJUTkRORU0wTWtORVFUTTRRemhDUmpsRlFrTkdNa015TXpNMUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a17fc257f6ca7dcaed767e61dfdb79d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "803", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6368c96-fd09-4d8c-b7e9-42ac2d600b2f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/555549901", - "attributes": { - "enabled": true, - "created": 1559692539, - "updated": 1559692539, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/561910166", - "attributes": { - "enabled": true, - "created": 1559757422, - "updated": 1559757422, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/667547545", - "attributes": { - "enabled": true, - "created": 1559772501, - "updated": 1559772501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4M01ESXdNak0wTlRZaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "66acecf042345d1d95cf15494cfe7337", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1136", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cc4d5c6b-b7f3-45dc-93a1-dcc7ebc4c517", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/765588107", - "attributes": { - "enabled": true, - "created": 1560272692, - "updated": 1560272692, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/774905515", - "attributes": { - "enabled": true, - "nbf": 1564536012448, - "exp": 1567128012448, - "created": 1559771777, - "updated": 1559771777, - "recoveryLevel": "Recoverable\u002bPurgeable" - }, - "tags": { - "tag1": "value1", - "tag2": "value2" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/775497743", - "attributes": { - "enabled": true, - "created": 1559754704, - "updated": 1559754704, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/83438139", - "attributes": { - "enabled": true, - "created": 1559760319, - "updated": 1559760319, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "1eacbb8cac2ea5b690702384890233d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "34d18e60-6e95-4851-b934-2bca4304c56e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDODRSa1l3T0Rnek1USXdSVFkwUkRZM1FUQTFOREF4TTBJNVFVUTFSREpHUlRNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "900862e132e81590a4210bfae18130ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "624", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7d8d892e-125e-43cb-83d7-11b720e186f5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/915875143", - "attributes": { - "enabled": true, - "created": 1559845843, - "updated": 1559845843, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - }, - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/917377779", - "attributes": { - "enabled": true, - "created": 1559757224, - "updated": 1559757224, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklYTmxZM0psZEM4NU1qTXhOamd5TkRraE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "23d546035b2f43a53606d6c41f98d392", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5b326b86-fdc0-4d18-baf9-126cf287f62b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/923168249", - "attributes": { - "enabled": true, - "created": 1559692323, - "updated": 1559692323, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpneklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "e967409ce3f5594f2a96790ca0bbc40f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0f277de3-4811-480a-861b-b1e3dcf61af6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5EVTFOVE0wTnpnNElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "4381333f0f2d86a5bdc55ae25cccf50c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "62764c16-955c-45ee-b654-06b799ebe2da", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955294414", - "attributes": { - "enabled": true, - "created": 1559772501, - "updated": 1559772501, - "recoveryLevel": "Recoverable\u002bPurgeable" - } - } - ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4NU5qWTNPRGswTnpreU9TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "a15e794e46191ffaf67bf898e198a27a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "272", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "28d32d4e-7e93-4d3a-a4c0-2ace6371def9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFM0lYTmxZM0psZEM4NU5qWTNPRGswTnprM0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "eb84c74290168d659ae12b2f886dfd5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2ccb1bef-41e9-412f-8fc1-dc89ae86fe4a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUZNRFkxUkRVNE1qZzJOakUwT0VFeFFVSTJRVU13UXpFMk4wSXdRelpHUkRNeElUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "27be6da1225df9f539614cb1160da425", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7cb7dc84-2af8-4dd2-ac9a-197b90dabe8d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRrek1TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpFd0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URXhOalF3TlRrek1TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298379-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "95a0df230a47bdf513d007381acb9789", + "x-ms-client-request-id": "efc66f6fee107e4f1ba981aa067ac061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "316", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:45 GMT", + "Content-Length": "4790", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "45fa4d2f-80fc-44c4-baf1-5a2c2851ebf9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3e89fccb-1ed4-4b42-976a-247788fb9c41", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "value": [ + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405931", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405932", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405933", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405934", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405935", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405936", + "attributes": { + "enabled": true, + "created": 1565114470, + "updated": 1565114470, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405937", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405938", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405939", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640594", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405940", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405941", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405942", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405943", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405944", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405945", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405946", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405947", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405948", + "attributes": { + "enabled": true, + "created": 1565114471, + "updated": 1565114471, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405949", + "attributes": { + "enabled": true, + "created": 1565114472, + "updated": 1565114472, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640595", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640596", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640597", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640598", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + }, + { + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640599", + "attributes": { + "enabled": true, + "created": 1565114468, + "updated": 1565114468, + "recoveryLevel": "Recoverable\u002bPurgeable" + } + } + ], + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URTJORE0yTkRrM01DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMTYhTURBd01EUXhJWE5sWTNKbGRDOUdOVEpGUmpaQk1FTTNSRE0wTlRRNE9UUkdOMFJDTmtaR05qQTJSakZCTWpNeklUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4NCFNREF3TURFNElYTmxZM0psZEM4eE9URTJORE0yTkRrM01DRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "74f79a7e7ad91f1dd18bb2b544b3768d", + "x-ms-client-request-id": "5064af160940b9a78e00048465dd79e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5754,18 +2991,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2b2f99e2-3fa2-4301-8838-44b07a5ace5f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "afe42d39-9c33-4f84-a0d3-120dc60d24d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5774,17 +3011,18 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640590?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a80c063c67cd97167700138c1bbdde6e", + "x-ms-client-request-id": "9ea6fb4162fb69b75969e32b9f643d4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5792,45 +3030,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a3e45419-edf9-444f-a3c6-fcb5d783f1cd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "040ec284-4f00-46df-a68b-691611e014aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640590", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640590/468f4d8532f442dab53ad98cf89f5dca", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640590", + "deletedDate": 1565114472, + "scheduledPurgeDate": 1572890472, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640590\u002ff171ff27580043cab8f8f68276205c6b", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114467, + "updated": 1565114467, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640591?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640591?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7c33c3ca3015a84bc280c4bc57407960", + "x-ms-client-request-id": "e31117ab60e76668c80c6010eaca183e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5838,45 +3077,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a435b2d8-f574-4c96-b504-970f11070e74", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3fa61109-a141-4db5-84fd-0ad9b5aff32f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640591", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640591/3dda663fd6bb4fed9fff0487c8bf1c4c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640591", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640591\u002fe7b933a245904f88bc8acbda4385a5e8", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640592?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640592?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14fb7959eebe16bc8360fcd966900414", + "x-ms-client-request-id": "0b68a03021d4b465f7fbf6d7257c1a2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5884,45 +3124,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c24bdbbc-3987-41ff-8138-67d6889cbfdd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0f414532-e9de-40f0-bb9a-aceb5bc9c0d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640592", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640592/bd7dd26346a04485826a06c6d0bd7c23", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640592", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640592\u002fb83e952cb2ae4f90ae9c38444d8eb116", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640593?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640593?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "80ea44adfa7f0c77ba63e64ca35a3f37", + "x-ms-client-request-id": "4dd8b7c395cbe1f99340d6ee02a67f8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5930,45 +3171,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bab80773-d506-4102-8322-e8fbe89eda42", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d911675c-f41a-49af-81b4-f5f0d351cacc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640593", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640593/ec51701b531446c88d6ca12a913a36e2", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640593", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640593\u002f7151916e290b47928042b3e58cddf853", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640594?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640594?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429837f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a132b387c9c2dcaf071df8b533724232", + "x-ms-client-request-id": "fefaa55032fb8978b15debeb6991404c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -5976,45 +3218,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "94ddd4f4-844a-4eb2-a5d0-4e6e7945c335", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1fde7247-b8c0-4869-94f2-c9807d2a11c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640594", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640594/415b3f573040426598305b15ac1f5ad8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640594", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640594\u002fadf0cee75cb443d19dff01e7d0760622", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640595?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640595?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298380-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "130eaf7cf8555fe002ee595b086f7329", + "x-ms-client-request-id": "334d35f2cbf29a72a78777944b77b150", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6022,45 +3265,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "42a74440-6fba-459f-9bf2-0b8be75abd07", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "03117e58-b5a1-4cac-8e0b-9c1c0c8f0f5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640595", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640595/665dd88560134c63bb3c0d3582e4bfdd", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640595", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640595\u002f5b0d4d24bd8b460796a98ef0c633affd", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640596?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640596?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298381-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b351c521635de351940e796202c2d948", + "x-ms-client-request-id": "7f86677c1b81902f3e4e9c6ea90e7701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6068,45 +3312,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:46 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f9de33a7-e50b-4682-8c3c-bb28b7c90369", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f34ce138-3e11-4164-8625-df9941517482", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640596", - "deletedDate": 1560804586, - "scheduledPurgeDate": 1568580586, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640596/cd9edc713ce841cba78536633714ad6e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640596", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640596\u002fc9d197114bab45ddb7b421dba737ce35", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640597?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640597?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298382-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f3d0b3212b4b8ee2d2d39fd37053d497", + "x-ms-client-request-id": "ccfc8aff4b59859c325f5773bae43e3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6114,45 +3359,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d45b969b-e13b-4738-98e1-b446dccb0665", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1189a2f7-8a6f-45e7-bf8a-d59b3f8c05e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640597", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640597/e07fc767c60c43fba1a0212d4e4a0b4a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640597", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640597\u002f15d5304080384694a175099f639fc61b", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640598?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640598?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298383-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6e93cea98e2019d45e2b7e467e7d5c3f", + "x-ms-client-request-id": "026e9babc00ad6ca05bcf4a32f04f198", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6160,45 +3406,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e9ab1a3d-515f-4d63-874c-2ebafe50692c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4e38319d-a4a3-436b-8f2c-62ccd5cb927e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640598", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640598/d5eeaa823edf44f6b0f7e04677860227", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640598", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640598\u002f5e58871743af494a8aa3a34cf9bf8512", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1911640599?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640599?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298384-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "543a10157f9ef5dde2c3e08ac37e7241", + "x-ms-client-request-id": "c1957610e47a30f7cb014d22c4bcd659", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6206,45 +3453,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a60f386e-5f8e-417c-b773-e533c85ec5dc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "71e67c9c-fb61-4676-9e6e-543180a23439", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640599", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1911640599/16bd4a4ebd694f08934f4cc50459f9d7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640599", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1911640599\u002fc56babc4d421494b847806482bdb3b33", "attributes": { "enabled": true, - "created": 1560804563, - "updated": 1560804563, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405910?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405910?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298385-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "33b9e13a6b2e9228dfb79520ad9c0f54", + "x-ms-client-request-id": "0ec26110759f3ef6bf25c79c56f8552d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6252,45 +3500,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "20d1bacf-8b64-4fdd-b86f-096b07d90582", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1284e99a-5dae-4fb6-8018-6985a883c223", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405910", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405910/42f9c957983d4f63a273f5a4eda5df2a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405910", + "deletedDate": 1565114473, + "scheduledPurgeDate": 1572890473, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405910\u002f91d475a520d241429d837829b93cc5c6", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405911?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405911?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298386-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "5fbe5f767f1929f9f09e8b5cae4955e0", + "x-ms-client-request-id": "4462be6e7c4fc6bfa33e360973a81249", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6298,45 +3547,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2ab1726c-6555-48ec-968d-d6b13c99b7f3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c48aa3d2-7c93-4a82-91c9-bee847e25a93", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405911", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405911/96fc3f486b5d447490ea0789d572dc77", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405911", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405911\u002f7e565b5cdf30443ba3fcaa1668638a61", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405912?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405912?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298387-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9c0b3db829c4a910e8a874e6eabd4846", + "x-ms-client-request-id": "cd939be6e2429bf97f5602551d5ad9d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6344,45 +3594,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b44e71c2-881a-40c8-a58a-d8576f06b162", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "369bd986-b12e-4c47-92c2-c86d9b177ccb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405912", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405912/77e8ecf7c3ed439f8cf3690d635064be", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405912", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405912\u002f5b5f36f180fa44dd897447ce7dec4397", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405913?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298388-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "64138bb313bfba28e88f4290e0cbe395", + "x-ms-client-request-id": "05b41fab9259940aa1fb6a613eedcb17", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6390,45 +3641,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "38fd6d63-1bf0-4e6d-9d3a-67e7c89e649b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "db4515df-b05d-4a0b-9219-dcc72f55e445", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405913", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405913/490308bed6894dee9db2248f2d931b24", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405913", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405913\u002f26cbb12fc4cb4262b6487f5357150f82", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114468, + "updated": 1565114468, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405914?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405914?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298389-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6f67b56272904d8f4f1477700b133f32", + "x-ms-client-request-id": "bbb67d1388648bebc5c7c4f97a6aa949", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6436,45 +3688,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bc97b9ca-5e67-481c-862e-cc2b2ccf9534", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4805ad11-9053-4232-9cab-636ca5d94e0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405914", - "deletedDate": 1560804587, - "scheduledPurgeDate": 1568580587, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405914/11b7c1cba32c45b0890b4b8fbeb08993", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405914", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405914\u002f086615c550904b259288e4242ddf2b27", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405915?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405915?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "22a84456f036a5201550b435e680c91c", + "x-ms-client-request-id": "545d63640cf354f091ff2c4778975c92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6482,45 +3735,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:47 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "defe4952-49a2-430e-a1e8-c26c3ba1a574", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "580b3451-ea0b-46cf-a419-67b7bfb50825", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405915", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405915/57519580b76744fb9c769ded450328db", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405915", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405915\u002fa30c1426938e4c208cceca557c3544c2", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405916?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405916?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3583dec4d85641b6fbc615aa9bb7afd5", + "x-ms-client-request-id": "a042ea8b1ea4236e33284091cd101a37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6528,45 +3782,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cce90f7d-24df-4822-b2d1-bc5f46d54177", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b8920309-e051-433c-929f-2012f4ac1311", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405916", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405916/4d1582c9302447d29f9075aa10d9acf7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405916", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405916\u002f8d68b465c4ef40bebdff27a11b87fe2c", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405917?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405917?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9b390f4fc022715f94c25a3fbd5a67ce", + "x-ms-client-request-id": "dbfc2152778f06238c612a655ca4122d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6574,45 +3829,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "40bd123b-ed52-4a24-ab76-009ca99572aa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9ae17549-fb44-41fa-b6d5-3acb854406be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405917", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405917/95a7a3e244434a468e2094efb24a00b0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405917", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405917\u002f182335f2c2f44b929129864a25d5df42", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405918?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405918?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2cac5a4a0a8f7ddc8d67276fdb75095e", + "x-ms-client-request-id": "8f6d316a082846a5f53a20cbcb5e8680", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6620,45 +3876,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dd85c9b9-324a-4c5f-80b6-2e6a27b37c68", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "730d19a4-51cd-4f79-8e6b-5787ec52f681", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405918", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405918/08ff454abd1d45479dc8368ede7bef16", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405918", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405918\u002fc8d1009c87584603b3a200ea57799361", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405919?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405919?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d6e5dfa12d4703f97f12a0947e7683a1", + "x-ms-client-request-id": "57f4f4e5819b1402c63b1342f408c78f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6666,45 +3923,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2212be61-9f08-40fe-9b22-7d54741aaec9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b189091e-6213-4b46-8d4a-71aedfffe2b2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405919", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405919/3a176ebbeeba4a529c40cb9a6b8880f7", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405919", + "deletedDate": 1565114474, + "scheduledPurgeDate": 1572890474, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405919\u002fb8b4a23bcd3e410393618bfaff591567", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405920?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405920?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429838f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4160465f830a454533bb0ebb99ef951f", + "x-ms-client-request-id": "9c2713168aa2490e7bb6e65556583b2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6712,45 +3970,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e42cdc5c-cdf1-4d31-9bca-15a3a59e7fcc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "78913a92-f4fd-43ec-93e6-e21334dadf3b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405920", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405920/cbbeb04fadad4d278d377087ee5196b9", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405920", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405920\u002f42162793c3f047c39d073a8d5a37e103", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405921?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405921?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298390-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "de9dfcb890741c8760a8ac7d6948ff16", + "x-ms-client-request-id": "6780a9dabbafe9922e59c8edf56351ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6758,45 +4017,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "64ae4018-eec7-4da8-a72a-da33154f87e9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c18cf006-59ac-4b8c-90c4-f7810de7bef9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405921", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405921/03160f93f4744077a4850e53c470818f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405921", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405921\u002fc554a4d880d845ff8b902acc73f47a67", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405922?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405922?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298391-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "951085e3c7151e5399a0a38b1f3e698f", + "x-ms-client-request-id": "b8b49072ea375adde6abdbe49badbd6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6804,45 +4064,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6316f5a7-5b58-4484-9628-5eca456412f9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "44b9d6d3-5d8b-4a69-9519-b8c8ffff1625", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405922", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405922/1c561e68ed354b4098680d3594002ed0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405922", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405922\u002f8497c73522ef44539ddb0b52ac475280", "attributes": { "enabled": true, - "created": 1560804564, - "updated": 1560804564, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405923?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405923?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298392-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "82db817ca5d8ce2dbf43e061d6c8dceb", + "x-ms-client-request-id": "4a67e40060875adf813e6d48c1215318", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6850,45 +4111,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9d8940b6-32e7-4513-b1ad-f422e927f2f2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5982503c-8ffa-448c-b5c2-5fbc36712bd5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405923", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405923/2e5ce539bdb748beb423712fe4911c00", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405923", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405923\u002fbcfc1d21c9414107924e390600e6896e", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405924?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405924?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298393-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14d7f7bb00def109a87f44d3edfbfc22", + "x-ms-client-request-id": "c6e2f96483a3f0f7cc258004e0ad4e81", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6896,45 +4158,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c9a17cf-c579-4fc4-9b07-e0b54031f350", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39783212-5830-4db1-b49d-6db5f3573188", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405924", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405924/e601372f8e6d49eaa0eb7198df2b6270", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405924", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405924\u002f667be76b6521404fa1abc73375418163", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114469, + "updated": 1565114469, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405925?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405925?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298394-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e8001d3f7d6d3e3d5741d5d2e7f148d0", + "x-ms-client-request-id": "10ed5a9c07fb1264b05a36f97c9499c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6942,45 +4205,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f96ba4dc-268d-42e0-88ae-de483c52e365", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c91a775f-a0f5-47c7-9a00-1ad9cde23029", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405925", - "deletedDate": 1560804588, - "scheduledPurgeDate": 1568580588, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405925/11477972099b431194a449b79eeba184", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405925", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405925\u002f493648b90086425e9f671d21b61d5ff4", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405926?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405926?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298395-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "28cfb8c455667bb077ead9596059e1c3", + "x-ms-client-request-id": "a17fc257f6ca7dcaed767e61dfdb79d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -6988,45 +4252,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:48 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dee66368-9dcc-4c5c-9540-32bbbcfdbb85", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2870f25a-47f6-429c-92ba-6497b1a0b003", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405926", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405926/34466ebb57d84d66b75c592d5a1a5e9c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405926", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405926\u002fd00138fe335c4b28b6ba61268715be6d", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405927?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405927?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298396-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b922be46f3c73e7eb999bc9d2a3709b6", + "x-ms-client-request-id": "66acecf042345d1d95cf15494cfe7337", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7034,45 +4299,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "369a2980-9000-4a8d-ad7d-ea7ddfc2d4d3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "06737a04-1614-41d0-b75c-29ca7a410d6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405927", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405927/5379f0512e40452b862dc262778d8f5f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405927", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405927\u002fffca73b8ac864407b19a7e6f8633fb6c", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405928?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405928?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298397-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "350f7437d42ce9bb6c857182a3e4defd", + "x-ms-client-request-id": "1eacbb8cac2ea5b690702384890233d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7080,45 +4346,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1ee2ac5c-e195-439b-8251-189ceba5420f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d2db79f6-ae32-4d22-9e53-0ec92c291729", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405928", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405928/9da6ad968a164fc493d2832fcbebc125", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405928", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405928\u002f63c97d5fc55f4081bbc3e762b8b15a3b", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405929?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405929?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298398-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "288b125f8fcfd0083a916fcd9913503f", + "x-ms-client-request-id": "900862e132e81590a4210bfae18130ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7126,45 +4393,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a7c6b4c8-f051-44cf-b961-5295ded0f1cb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e9fb7f2d-7cd2-4bd1-a48c-60f28e5d9dad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405929", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405929/b5facf35db014e6a87d70c912268b628", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405929", + "deletedDate": 1565114475, + "scheduledPurgeDate": 1572890475, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405929\u002f6626d7e17cf74a539ad2ac9ec9e41d36", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405930?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405930?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298399-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "eb2222e0ac4a729702394d4282fb9ad4", + "x-ms-client-request-id": "23d546035b2f43a53606d6c41f98d392", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7172,45 +4440,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "592ab313-fccf-457b-9164-1983f62f62da", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cb7e5299-77a2-4ef6-a6bf-aa1efcddf2ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405930", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405930/aee14266b9ca4bcf8cc5b844464da2b6", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405930", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405930\u002f602ccc98a8fa4e0a9c626e888235f16c", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405931?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405931?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "183dbebae0aca7e76b3ffa9a64ee5058", + "x-ms-client-request-id": "e967409ce3f5594f2a96790ca0bbc40f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7218,45 +4487,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7909d55e-e965-4968-9f30-514420892904", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1c4695f1-5da0-48c0-888e-d7accc37840b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405931", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405931/7538c5687c49471084d7db6bb94b3019", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405931", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405931\u002f7999cd100797488489c34c5e4419afaf", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405932?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405932?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "80a23134f2c2b3b37b19269542c64d3e", + "x-ms-client-request-id": "4381333f0f2d86a5bdc55ae25cccf50c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7264,45 +4534,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a3ccd213-7a8b-4b05-b5f6-9a9a1b797928", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e828adf8-ca11-4d1b-915e-b310fc4e7dc6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405932", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405932/038ea678f05743438bff31bd84e047ec", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405932", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405932\u002ff1d5ebe5b4d7409dabf813f27fe6803a", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405933?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405933?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "da129bf638d6ff933b7a800ab1fc0d13", + "x-ms-client-request-id": "a15e794e46191ffaf67bf898e198a27a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7310,45 +4581,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "410c3b1a-508b-4d01-85ce-ebaf09a01ac7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5ce6dc74-b778-4ccf-96fa-d6b235a5488e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405933", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405933/96eaa6568e424e4cbfe84671d18c9479", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405933", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405933\u002f885e392dee2e437e8367660423e08941", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405934?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405934?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "510ef4e81958c8120a899c92ba5165a5", + "x-ms-client-request-id": "eb84c74290168d659ae12b2f886dfd5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7356,45 +4628,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "da6cd5f8-427e-46d3-bb71-79bfde18f662", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2382f1cb-017b-4f87-b7f9-d689b96d5759", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405934", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405934/04b416ba1267487e9b6f6cb5456d9c37", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405934", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405934\u002f4e9d0114e92d42b7bbcb2c8668a3b6e0", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405935?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c9a4bbf175dcfb829da3454771a8017f", + "x-ms-client-request-id": "27be6da1225df9f539614cb1160da425", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7402,45 +4675,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f8bf77cc-f66f-4ef9-8dbc-ecfb9e23b442", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9be84b82-c131-4fa2-aa58-63b5c7247a32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405935", - "deletedDate": 1560804589, - "scheduledPurgeDate": 1568580589, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405935/494b5f84d0c84856b43064ef68a2b4bf", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405935", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405935\u002fd26bd169520349ffbdd181fb01c6d871", "attributes": { "enabled": true, - "created": 1560804565, - "updated": 1560804565, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405936?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405936?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429839f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "4dac120bfcb8dde68849d04c9c0044e9", + "x-ms-client-request-id": "95a0df230a47bdf513d007381acb9789", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7448,45 +4722,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "acc695f3-071d-4be0-b94a-4132e0464372", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cca4d3f1-46f7-4cda-83eb-7e38d4fc0dc1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405936", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405936/08808c7bb0a247d884c19ab987a6c13a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405936", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405936\u002f6bc0f925bfa1418caf85744044740e06", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114470, + "updated": 1565114470, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405937?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405937?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "f519db15445873377212b3b5d4cb5661", + "x-ms-client-request-id": "74f79a7e7ad91f1dd18bb2b544b3768d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7494,45 +4769,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:49 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4ca26c3c-03d1-4ab9-8fe5-590efafe739f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1571475b-73f1-44c6-b1e0-7ea45e581157", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405937", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405937/4cbe86f4f1ce499daec1233e2a87e82c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405937", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405937\u002f32647e9a97d2405485ff7534c42afcd4", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405938?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405938?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a8871d8817a4f4edd5c64092a5355f9c", + "x-ms-client-request-id": "a80c063c67cd97167700138c1bbdde6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7540,45 +4816,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "98fbe2bb-950d-4fc2-aed5-56eea34f6b00", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "72f019e3-f196-4855-aa4f-9308a2fbea98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405938", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405938/23ba6a8380874542a11f346e83cdc1ed", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405938", + "deletedDate": 1565114476, + "scheduledPurgeDate": 1572890476, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405938\u002f8d824b0f1e464b4f9e3fb19f554c8a74", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405939?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405939?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "96315b5e0b8fc626db39dba5483108bd", + "x-ms-client-request-id": "7c33c3ca3015a84bc280c4bc57407960", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7586,45 +4863,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "85831066-ff47-444f-9830-c1c40c8647ac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "85918b13-b907-4c38-a02c-e596af534637", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405939", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405939/0cb4948c3f644df59e5624bfea8b0eb0", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405939", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405939\u002f772ad212199e427aa47f1a020f163397", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405940?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405940?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7ec36ef29c79fd44ee25209104a4cd3c", + "x-ms-client-request-id": "14fb7959eebe16bc8360fcd966900414", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7632,45 +4910,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "179c9248-1ad4-4ae3-8697-a6b8bb555a23", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5071aff3-c7b4-4f8f-9761-2b07f9f7bb87", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405940", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405940/db761588125a4f21ada3c144e4175b08", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405940", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405940\u002f1cadf47cd02946b584a75465d4df3105", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405941?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405941?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "785617b3bf997cd2f6c0cc6b3c47aba4", + "x-ms-client-request-id": "80ea44adfa7f0c77ba63e64ca35a3f37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7678,45 +4957,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a97d965e-3006-42ae-a948-c0dd3af812e6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dedd8218-ab61-426f-a49a-52d6730420fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405941", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405941/80cb9dc036ea417889c6a58d1211d69c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405941", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405941\u002f56a552d1e2df4814b0ad16569a84db5a", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405942?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405942?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "37a083bee071c1231734a869eb95c237", + "x-ms-client-request-id": "a132b387c9c2dcaf071df8b533724232", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7724,45 +5004,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "67006f9f-7514-428e-a9e6-ed20428a796f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d3636627-f2ed-4b7d-a83c-e741ab9f59a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405942", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405942/df278562ddb645909aacec8d10c2d883", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405942", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405942\u002fea75b3a21d7d43708570241af34f19d6", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405943?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405943?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "31f19e6b90da32239c4788b8d0d9c1a6", + "x-ms-client-request-id": "130eaf7cf8555fe002ee595b086f7329", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7770,45 +5051,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "59a07e81-d9dc-450e-b767-ec51c742a0fe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f0937013-0b2a-4118-bc8a-66aca188000f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405943", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405943/a0de41c0008241638d95db292e0135b8", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405943", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405943\u002f4f7646c857814798b443737d2deca98e", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405944?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405944?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "80d37c799604d3cbf495616517689160", + "x-ms-client-request-id": "b351c521635de351940e796202c2d948", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7816,45 +5098,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a712a944-170b-43f7-a1d9-6c5f56602d29", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d97af99b-b18d-4257-b084-c83d7084cf2e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405944", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405944/110a12fb663d459293d4461c158eb7ee", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405944", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405944\u002fb14ce161051645b79825d0f9c28b1421", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405945?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405945?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9dff95fe79562dc95f6d9a2a576af13d", + "x-ms-client-request-id": "f3d0b3212b4b8ee2d2d39fd37053d497", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7862,45 +5145,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9311541e-fc83-4779-ade5-d95476389733", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eb8670fe-70e7-4950-92d1-3118ee770135", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405945", - "deletedDate": 1560804590, - "scheduledPurgeDate": 1568580590, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405945/5a808dab06074b699ded9e56133a1045", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405945", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405945\u002f2a86b6dcc6a94fe0b6f8eac2ef2d8e9e", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405946?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405946?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983a9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "6ff0027241c2d533d31d3d452fbe1b33", + "x-ms-client-request-id": "6e93cea98e2019d45e2b7e467e7d5c3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7908,45 +5192,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9bb78d63-083b-4e7a-bbfd-e432c487ad61", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eaed5a8c-5369-4204-8253-7424180763d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405946", - "deletedDate": 1560804591, - "scheduledPurgeDate": 1568580591, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405946/90d1c05e021c42ada05a69817cf82f00", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405946", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405946\u002fb5feebe880634807a8df93181b7f7b88", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405947?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405947?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983aa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3aba27b523d9004fb2a52196fba07c89", + "x-ms-client-request-id": "543a10157f9ef5dde2c3e08ac37e7241", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -7954,45 +5239,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df971924-dec7-4a63-9ac0-dd3f0959c761", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "13864d0a-509b-477f-87e6-d94290cf38bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405947", - "deletedDate": 1560804591, - "scheduledPurgeDate": 1568580591, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405947/2fab6a87aadc45749388353d321d5f9f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405947", + "deletedDate": 1565114477, + "scheduledPurgeDate": 1572890477, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405947\u002f5784e081ceb142f88be2fd73df9aaebf", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405948?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405948?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ab-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "14f223a32278bc9e622aca383b84fea0", + "x-ms-client-request-id": "33b9e13a6b2e9228dfb79520ad9c0f54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8000,45 +5286,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6244e7dc-4aa2-4fed-abcc-71a7167c6d0d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3ea5fad8-c21e-4910-88ce-219253136c9f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405948", - "deletedDate": 1560804591, - "scheduledPurgeDate": 1568580591, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405948/2d978b65e8b14040852eec4653572c7a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405948", + "deletedDate": 1565114478, + "scheduledPurgeDate": 1572890478, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405948\u002f56897677f36e4ac2b973d8030c41e87c", "attributes": { "enabled": true, - "created": 1560804566, - "updated": 1560804566, + "created": 1565114471, + "updated": 1565114471, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/19116405949?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405949?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ac-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2f746751b7af4e64b2efbd1d209cd933", + "x-ms-client-request-id": "5fbe5f767f1929f9f09e8b5cae4955e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -8046,1686 +5333,1736 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "352", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:49:51 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "856e8355-2042-4d73-b79d-69d10aa95d62", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "18d430ae-28ce-4cc9-b358-9e742cf593b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405949", - "deletedDate": 1560804591, - "scheduledPurgeDate": 1568580591, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/19116405949/08aec79d69dc41ecb5671545b7cac945", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405949", + "deletedDate": 1565114478, + "scheduledPurgeDate": 1572890478, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f19116405949\u002fb272dff214054d73b066118fdf008321", "attributes": { "enabled": true, - "created": 1560804567, - "updated": 1560804567, + "created": 1565114472, + "updated": 1565114472, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640590?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640590?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "22ac1a921cca163438aeca9887e351c9", + "x-ms-client-request-id": "a260998acb2dfe902d7a23e342ea50e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c676c695-714c-4fd0-82df-824e3d669014", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "39ce6b34-5c0a-4085-ba9b-2cd915fb24d4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640591?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640591?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "797b63b08122e09201eba371c714c4de", + "x-ms-client-request-id": "615563865016e186afc57078df96fa8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "895ef6c9-2a7d-45c3-a84f-1d6f245d4339", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "923dd5d9-ad25-4d0a-b068-502c393ab2d5", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640592?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640592?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "917d41d5ab2c58ee3f3103b43dc71442", + "x-ms-client-request-id": "7d6476b1d54e44a2d79de2909dcba538", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "754d3e4f-b10b-4cd8-94c8-e8cb8fbf62a8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "88e989a6-6ffa-404f-af8f-a02cc973b2bb", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640593?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640593?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "79d3ab1f4f3010de87cc21df79c24e24", + "x-ms-client-request-id": "30adf0ce2ce93ad8137ff3685a171e96", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aae19597-3a9e-4695-a532-0af0474c92ce", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "30b651f2-cfcb-4114-ba94-b31c2e6449a4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640594?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640594?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "45c2ebe9bf65059c74223af17edea239", + "x-ms-client-request-id": "cc31987fd286b092c11089796df544e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6ac27676-bb94-428b-bcc5-d815adad0231", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "100d9598-6792-4a59-9e16-b061b2902f46", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640595?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640595?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1c5260d74a4085ae636d095f8a0fdf7c", + "x-ms-client-request-id": "efaa381fcae885a19d296acfe239e9c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:07 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "069997a9-8fe1-4b62-9c4b-4c9213c9e4ae", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5d52b0c4-2151-46db-a692-b9659775357f", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640596?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640596?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "51cadee2ce0460dd0ece050d15ec92a9", + "x-ms-client-request-id": "04104b7ed999fbb15efd6ed8a25fcc1d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c8cd23db-3eb5-4480-a046-1ff9f21d6c04", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d52d3926-610d-4f40-886e-42242f1930fe", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640597?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640597?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1907e72932709fe33d3de1f8b53d7b65", + "x-ms-client-request-id": "21480f3a2f6cb5aef6ac2e5c68c2cd87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8f1c04b6-d776-4f9b-9bbd-41107ad57dbb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "36db1a3a-c151-41d1-986c-cdebe84bd3c8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640598?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640598?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a00ebd435113083482f20d7245a07077", + "x-ms-client-request-id": "22fbc9263fe5464a87ae91eb5bc9e23e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "36468014-4ab8-47a3-a0ec-68c0f378df16", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "03e4c604-3b25-49a0-bb87-f6e6f76ca4d8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1911640599?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1911640599?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983e9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a23660dac507b00bfa2b14c7ede5aad1", + "x-ms-client-request-id": "d3944c5dc8f14e539c5a0decab54939b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "21b5dcf5-a532-4718-8418-a6fb41671910", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b54033be-9a87-4207-b57b-6b3e08837587", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405910?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405910?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ea-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "58ca9f53f2ddd896b3ff967e24715a9c", + "x-ms-client-request-id": "d9b1e62faa64fb38c5019abe9dc35a2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3cef54e7-99b8-44f7-9597-2e12612989fe", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cf535daf-eae9-4a62-882f-84ceb1b440d6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405911?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405911?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983eb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "551d6acdd8067d5db15ea5e83c6c1b9d", + "x-ms-client-request-id": "1bfff0cafa2e5e9676ac858a315d9b32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "de711727-6d71-46e3-9925-82eb46619159", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e5056e58-e404-47ab-8065-c3865acc7291", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405912?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405912?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ec-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a51e3b4717d6e899c95eef082f8d8c89", + "x-ms-client-request-id": "74bbf61a0917b3da14990def2d94b1d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7aab2173-89f5-493d-ad94-3325da061ea3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "65b7628a-732b-45b1-85fd-d4532a0a5447", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405913?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405913?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ed-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "82fa78d054c87acb414ca67f4dae9b46", + "x-ms-client-request-id": "ba22df007855346c505363b724adc967", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "58d989af-0d4f-4450-9a19-fa0847463023", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e5fb754c-bcb5-49da-9dc3-85e76103bec2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405914?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405914?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ee-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e837f9e4b452b5c6d1348ca8e9554e24", + "x-ms-client-request-id": "a7a36866e507c116164c0695eda631e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d12a3c73-8686-4c19-a729-fba426943fef", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e61a17b6-d595-45b9-868e-7cc98216991b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405915?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405915?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ef-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c4171bd19972f2d470a4638971199b1b", + "x-ms-client-request-id": "528aabfbe03ba1dd898723c4a5228e66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:08 GMT", + "Date": "Tue, 06 Aug 2019 18:01:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "05ed92c7-d033-4d94-a812-1fc0c8cc1b04", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9fc5fcd9-000f-4d88-8f18-563740b0a623", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405916?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405916?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "3624a8c2a3561b36b145b094c82390ec", + "x-ms-client-request-id": "c488a6cf09f11ad2c960a40872d747aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "443870cb-4b52-4075-b345-1cdef89238a8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4f3c99eb-d7fe-42d3-bf35-9d6c7b022b3d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405917?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405917?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "31ad82fed7964ad4244477ae513c44b8", + "x-ms-client-request-id": "78bc81217723862c8b011e7fc2521bf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac7d55cc-6b40-4b1b-bdd8-405aeb73d8d0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "29a5f752-feab-4e34-9b44-157eccdaa5e9", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405918?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405918?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "40e5709817312ecee4fb122ce8402a4d", + "x-ms-client-request-id": "46c59fbe6c1df1f0d96f88da3bd42fb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ea0cf87-72f3-4297-bf8e-a577be6425a5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1cf807c4-8b22-4fa3-a00f-ea2c79255cbe", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405919?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405919?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ee8b77136a6beb84d4d911112b88ca75", + "x-ms-client-request-id": "24a27940156558437a0239efeb525876", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d12428cf-9353-45e5-8ece-6c7b3c7e2edd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7b7228c5-1038-4089-bf65-d153500cdde6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405920?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405920?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "57fbf801503de6bab37f4c9ac4a762e3", + "x-ms-client-request-id": "d24ab0450012b58c91ca9fb3ee524bb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "47928ba8-b8ec-4645-8587-019374f90d93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a4afb816-9dcd-42e8-b9f6-58ba0009ebd6", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405921?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405921?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d99b2a1a55b12e4cecf96c5806bc025c", + "x-ms-client-request-id": "483f6cd2f7b0a88e5c6ccc1b32010686", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "aaf5b2b9-b8e4-40e6-8cf1-d6a55259a40f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6e1b6271-9692-4688-a625-c78a27f5d210", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405922?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405922?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ef2b9d31d245c30fbca43aeb1de9272d", + "x-ms-client-request-id": "8a9412175d893f9feded929a758f6a28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd3684a2-712b-4e16-8479-240377c4eb79", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1c1ea20c-3c43-4f56-a37a-bc0c3439a3db", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405923?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405923?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "01f72d77f0edabc3accd6b44e362e0f7", + "x-ms-client-request-id": "7f1c82b710134ec622a276a534708290", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4400676a-4015-4900-937b-df04e5668d79", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4916c3e7-b595-4f0d-9767-3348badb33a3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405924?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405924?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2769f07d727b479e1ad81d0d1a601102", + "x-ms-client-request-id": "db9c19c4c0bd752dccff5ac364f332cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3e72f8a8-127d-4930-9ae8-5c249ce280b9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7cdab07f-f688-420c-b3c1-5850077bb317", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405925?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405925?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983f9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d8e03ed201c4406ed980437767cbdf59", + "x-ms-client-request-id": "b064a40286e407734c4667e7e6fa0b7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:09 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8d7cd551-4ab3-4d56-81e2-02b6573c28a7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "83ec3231-5a7f-48cc-b041-8bfb9df0addd", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405926?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405926?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983fa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2c6e43c4ff7f04b18fb0e615d3b6914b", + "x-ms-client-request-id": "5cd6026a8ef3f66a54a7b313b503e92f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b8386083-99bf-495e-951c-d80414a48447", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f1546c71-d4ec-4230-8130-8f811c9af369", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405927?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405927?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983fb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "a57168bc07817c3382294dfb2e26e04f", + "x-ms-client-request-id": "8fa2a96fd10c3daba5958f7758468ed1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5af929b6-a609-4aec-ac51-682535c163ad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ffbe2ea2-aa8b-4040-a7f5-931dd6ddaa74", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405928?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405928?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983fc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d748c3f9e4f2d2838ddb49141a596c23", + "x-ms-client-request-id": "6258ddf4d61d73d9396d5b3cd35f5149", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49539412-ecd1-4175-b283-58f594cd2942", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9000ee5c-b271-446c-8b11-00f8dcbd433a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405929?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405929?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983fd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "febbf8ee3a59bcd810f2aa56b2b6d668", + "x-ms-client-request-id": "3d78385c7b5799705698b65efef39e0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "49bfc1a2-551f-4d10-90b5-735453f91eee", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "809a9d13-7cec-48d0-abd9-69657206e492", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405930?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405930?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983fe-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "101c96cfba6dd758e59f17a5be1f6128", + "x-ms-client-request-id": "d81fe11986aa9812cf2f559e766f6a45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fb3f6264-28c0-425c-9945-0e61cb0d58f3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61faa4e3-bb5c-4b95-84c9-7386f36e3605", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405931?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405931?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42983ff-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "350c2abce16abef6eb8cc6003a2c20d7", + "x-ms-client-request-id": "201a464350cd78796cbf0c841f7b7446", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "014ebcdd-181b-47a3-a41e-3f2e8ff8f1f4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d0fd41a0-724d-4daa-a58c-1f3889a15e7e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405932?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405932?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298400-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "8344e1055b3d34b59fe419ba2232fef1", + "x-ms-client-request-id": "f2234dcf7840d69e26df6d2825d123e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a30c073e-a8c8-4609-8afa-aa9782893bac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a7f6ef8a-7ccf-4332-a501-fef00b3bffed", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405933?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405933?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298401-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "88998191a0a9eefda05d25e0f3589cb8", + "x-ms-client-request-id": "b81a702e7dd9c84067a66beb7a8d7954", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e497519f-c834-4b51-b1e6-77df8aa5fc41", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6c6978ae-d424-4d38-96b3-7f9eb2a10de7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405934?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405934?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298402-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "dca0407eddda60ea74d89686c73b9cb8", + "x-ms-client-request-id": "29cf0fba774bca05a844f9eee250539a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e4e93a1a-aa95-4665-8ed8-4a339a620b1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "da242ecb-b08e-40a6-bb49-640fd7ca88a4", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405935?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298403-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "b86ed58e9792642de356e2e036d44146", + "x-ms-client-request-id": "ae55259bbc60516d0c5b8a9a0db25c98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "be76b557-900b-40d6-adea-7cf65b192a1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "460d781f-b0c8-4a38-9b6a-65a15c33d9b1", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405936?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405936?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298404-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e13b61472191b316963813d10a762665", + "x-ms-client-request-id": "166e1966fa02b69b6b5010948352e516", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:10 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f56fca8b-6e46-43ee-b1b5-6183692ae3f1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "04bd181a-4ded-4d8c-87bd-11591e7b45e8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405937?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405937?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298405-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "1d526cc0e4e9e625133bf984fa0a2a9f", + "x-ms-client-request-id": "544fd153ca37fdf3a17e1cf0ed6abdf5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "45e66d3a-7079-4be4-91e8-addacf8ae714", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8164ae68-af78-4c7d-ab9c-647989129906", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405938?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405938?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298406-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "663e4f96bb006d27bfba215a845c596c", + "x-ms-client-request-id": "c98761e83ce2a1988a9f4310acd8cdb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5c03ef32-21c0-4790-84a2-87eb6490643c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f6ab4e41-3711-41f8-9f37-9c8dabf4aca8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405939?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405939?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298407-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "c9207d2f2382635c3b54ce552791b98c", + "x-ms-client-request-id": "3b47737507629b6025707484ddabc901", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d07c0442-5519-49c2-92be-3fe6bd94f1cc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a314111f-28ad-4bfb-872b-4e36dbe8bd9a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405940?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405940?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298408-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "bb3a730ec038056545e45e2fc2cb62b7", + "x-ms-client-request-id": "22ac1a921cca163438aeca9887e351c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2f4230a0-76cb-4797-a262-b2278a4ba275", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9683c87f-76a4-4fef-a928-f0402ecdce13", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405941?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405941?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298409-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "7c558ce260ea731df2db2aabedd1452d", + "x-ms-client-request-id": "797b63b08122e09201eba371c714c4de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "03e15d80-53d8-4ff0-808b-6f66f5f0e5f4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cb5fd4f1-5baf-4316-8cf1-5b15b969fb0e", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405942?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405942?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "104b95019e216e34181b849dc42da070", + "x-ms-client-request-id": "917d41d5ab2c58ee3f3103b43dc71442", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6c72ba9c-6ec1-482e-bf32-c8dcb652f05c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1dec5c29-c07a-4661-b049-0a6a16db53e0", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405943?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405943?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "9b7316f23c3cada256c7c95c96b91773", + "x-ms-client-request-id": "79d3ab1f4f3010de87cc21df79c24e24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "12162927-5fd7-462d-8830-75e7286929dd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "516b5946-394c-4752-8abb-ee143cac934a", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405944?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405944?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "2d2d319e517f439557e664cfdc7faec4", + "x-ms-client-request-id": "45c2ebe9bf65059c74223af17edea239", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a7c39a06-67ac-4491-8618-97258714da0d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d46e1b4f-536c-448a-95a4-7c5671c68e0b", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405945?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405945?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "d6b9ba3aa95ec4f0f39eba5ad4d8d85e", + "x-ms-client-request-id": "1c5260d74a4085ae636d095f8a0fdf7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9a7366b4-c745-4110-a0db-7c1800cfb5b7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "03959712-a96a-42c7-acf1-7a88a6d9b821", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405946?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405946?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "93fe11037300a0f0812f4456d8d2d1d6", + "x-ms-client-request-id": "51cadee2ce0460dd0ece050d15ec92a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:11 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4bb60fe2-47fe-4cdf-85ee-a0afa1c1ffb7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9bfde2e3-5cd3-40a5-88a1-e60c08de59f7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405947?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405947?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429840f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "db2105184100f514406839e1973b6e7e", + "x-ms-client-request-id": "1907e72932709fe33d3de1f8b53d7b65", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:12 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "639d6d51-2e58-43b0-851f-d0de3dcb251c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0e967265-f961-4b90-93d2-d6ff005293f2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405948?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405948?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298410-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cbcc060d1b80c7c4c919552e659aec20", + "x-ms-client-request-id": "a00ebd435113083482f20d7245a07077", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:12 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3bfc4a1a-b9b3-4d04-b3ac-91d9a8db6984", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9fd26f66-ca7e-43f3-9eff-914756bab823", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/19116405949?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f19116405949?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298411-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "cf41e3cdfcb7c15dfc095397390e0845", + "x-ms-client-request-id": "a23660dac507b00bfa2b14c7ede5aad1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:12 GMT", + "Date": "Tue, 06 Aug 2019 18:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3247d0b5-fa9c-4165-99f9-a148f56219e4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "64f81ebc-e98c-482a-80e2-68ff88dc8f60", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1745264371" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersions.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersions.json index f1647f9baa6b..280074ac8f9e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersions.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersions.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298160-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "9de105c8536d97f53d49827ea3ccaf43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a2bab2b2-8296-42e8-92dc-d2ef81dd5031", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298160-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9de105c8536d97f53d49827ea3ccaf43", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3831bb6f-1659-4255-9212-5f0ae02a4c93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cbee6001-5e01-4ad7-bbea-b25de6e60c83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/981d23160dc444b2802f31f38678724a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f310e18f5b5dd422a9651d5606adec1da", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298161-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2b33b08260011ae94b8bc0f3878e30e5", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c73872d5-6231-4dec-bf07-0d927b7d7bca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8109af26-a87b-42f2-87c6-632013cbcdea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1c6ae17f24ba49e498ea18b72ef78a7b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9f86358d1aec4e04bfc6d18b06ae711e", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298162-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dbc71efd812c773abc95adfabc02fd92", "x-ms-return-client-request-id": "true" @@ -116,42 +160,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c9497075-77ed-4a2c-8f3d-3df32dd6f2ca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8b9e9836-33b5-4ad0-bcab-c6d7304f1cca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/99ff74b6762c48139692735a60d64480", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa8d682b74b714a5385c021607323c331", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298163-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ddecf2c5075d67231cc651e1930210af", "x-ms-return-client-request-id": "true" @@ -163,42 +208,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f1d1f14f-4340-4a02-a429-c72f1e5ebc89", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9dca496a-6636-43ff-8aa5-290071080ff1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/6bc9540fee964384993228008980e1c9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9db5b1f7dbe9449db406af55775f6798", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298164-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "84819c19d404011776bc6f6cb3ee5e48", "x-ms-return-client-request-id": "true" @@ -210,42 +256,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "41a5c4a0-f06b-47c5-8a40-536ffd394181", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6037a068-1ac5-4175-ab67-5a92132cb897", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/d732a93a82474b9db10372dd95fe4111", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fd94b8243adfc40e29761fbf58bb9aa05", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298165-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "942e2e8e52a1f688fb60bf662f58e4b9", "x-ms-return-client-request-id": "true" @@ -257,42 +304,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fa4ac2c9-fb3b-41eb-9c64-e7dae3d183aa", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "99cd559b-0867-4918-bb01-586cafc6302a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f3b5f2147c33455890111d105b79362b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f6c48eaae2eab4d219a0b06a84840733e", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298166-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1fe0fe847881f08ddbeb67a197b6b32d", "x-ms-return-client-request-id": "true" @@ -304,42 +352,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4026265b-af0a-4b75-a440-4fc994222436", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "997f7d65-322d-4afa-842e-e2de49b2cf97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0b9bbf22accf430f84024e3c2de8553f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb7bb274c548f4f14a96dbdee79c6cf87", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298167-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "645309687cd4c60d148a89a315b1d11e", "x-ms-return-client-request-id": "true" @@ -351,42 +400,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f2992ba0-8bc8-49fe-accc-a39526e7eeac", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c835b42f-1386-40a5-8863-10f9048f19e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/6471bdcbfac5453784b3618961c289cc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f1f7824772f1d4751950efe137c7982dc", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298168-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b5e7b6d73e0e15c6a03db8b6ebe65f44", "x-ms-return-client-request-id": "true" @@ -398,42 +448,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "16e72e9a-5a17-4ca3-906c-9b142e1a8161", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ee8169fa-0cd3-4c87-b468-2e5db994cca9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f76b108d69f944f78144227c3c2b1e36", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f7ffe7751a1154cc6ac391a5d2ec25128", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298169-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "26fd91ad7f0508e4f11a0af7efeadb2a", "x-ms-return-client-request-id": "true" @@ -445,42 +496,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "223", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b7c53fa4-130f-4cca-a62d-f04d77f79988", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3675ac74-e63f-4666-b885-0a7e4f9b1ff7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ce3072435ad0468090181db9a1ce2bf6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fad78f439a27d436cad4afeebeff8b027", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e1c94819fecf2a1e423dc397c457da2e", "x-ms-return-client-request-id": "true" @@ -492,42 +544,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "37641d1c-1a4a-4f40-8a44-31ce16ca3c0e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "61d4b121-3afe-4718-9ad3-00f0bbcea49c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/7789408a0ed74639818b578e01427115", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff4db812e3ba94d378c4107860498fe54", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "83f6442babb35818d1dfc4f433ce26b6", "x-ms-return-client-request-id": "true" @@ -539,42 +592,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "827344fa-f8a4-409b-b456-fa039a7c5ea1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e6e1f476-16e3-4621-b219-8d0235c258c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/fedbd2c71516418dae6467ee30dd24fa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff3d7182cd8264bafa0afe086444d24e7", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a29c8d627d1cae7573d3e3c8bb4d4499", "x-ms-return-client-request-id": "true" @@ -586,42 +640,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:54 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2284096b-9e73-4717-a807-69e22618d519", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a7b5a11b-a378-4434-a37e-596ba4d4d431", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0fcc653261bd46cfac0193bae10db50e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8433c7e944994556a2eadea136848289", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "aaccdc3f57f36d762f7110ef3a2af674", "x-ms-return-client-request-id": "true" @@ -633,42 +688,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "690d15ad-28e4-489e-9efe-6563d754f589", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "274ecbc7-b7f2-46f4-9b9c-736ad4cb91b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/00878543d71845b089d65d3419112a0b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f147ff668eadb4c8fba857fe88b041a69", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "36340d1637baad12cf4710e0c8509c83", "x-ms-return-client-request-id": "true" @@ -680,42 +736,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a6328f6b-f409-43b4-b0f4-a513d0ce4aae", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "06a7600c-55ea-4a7a-a894-ca638bce0ba2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3fa43798cae5453cb76f17fb9d2c8ab9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f969569f88a4b451b8dca00d549f90975", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429816f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "56b52a9b7b020ac2172e73aa6d857448", "x-ms-return-client-request-id": "true" @@ -727,42 +784,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "57972984-cfce-4ca0-a71c-e362dbfcee1b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0c194377-6dd6-4af5-a268-783deec94aeb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1d712dab0fff42d6bdd9abb0f25e7385", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f0d1f0be2223349999034c7e5bf96733a", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298170-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "adb16edc0d1907dfca1edbac4696a5de", "x-ms-return-client-request-id": "true" @@ -774,42 +832,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae4d9203-1f9e-44d1-949c-00334e79786b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d61f76c-e824-448a-8d01-f43c21f4b608", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/982742d729de4b9e8d70f3c96b20c7bf", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe67c959ce4ca4e4d8d64f1604bf6d9bc", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298171-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0f538cd4a0759a714b291f8bc4674049", "x-ms-return-client-request-id": "true" @@ -821,42 +880,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a77fb019-15de-4f0e-93db-40cd6a4617d0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a8f00c43-09bf-4357-aca1-d9296cc9e619", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/db51048c2e71438a9f4c9a5fbc4bb432", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb4ccc439147645f1ba88deef21f0aea1", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298172-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5904c8d2ee9f8d6a4aae8ce3a015c480", "x-ms-return-client-request-id": "true" @@ -868,42 +928,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bc8b2d57-04f3-4828-bbee-cb78ba0c00b7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0af4ec72-a95f-49e3-848a-6eac7920b1c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ef34f0722dc9491486a35c8fcb425544", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f265039b88ef14177ba9569f06dc953bb", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298173-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e0d6948964313cd2fc1662efee534263", "x-ms-return-client-request-id": "true" @@ -915,42 +976,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "17f4c95e-8c1d-48ac-b5e9-fa9af6231760", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "33ddce79-96b6-40e5-9d44-989da9099f31", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1d5fb56a78324c6fb9bdf813a23adaa7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f59fbf24e0ace40c193b35bc578cc9278", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298174-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7eda91de4b92e53f21c6c5c7138efa35", "x-ms-return-client-request-id": "true" @@ -962,42 +1024,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bd08b91c-ab4d-4e1a-8a88-60927de6055c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "eec2e622-839c-4b99-a755-3895e8227a98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/8ce55a10144f4c7696a8836c51c9a3d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa2206f2ec4fe4e879d3bfe9891a4b60b", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298175-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "30019e655f906d18f5c75d898c7b9ff6", "x-ms-return-client-request-id": "true" @@ -1009,42 +1072,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a542912d-ba54-4eb4-af66-19b7e4e8a43b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d1476f04-4c68-4234-993b-d56e2dfa95a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3539eabea96548a1ae8c1f35e19e2fe7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa2e6a7b7257b4ffc8038d4c8b5f2448d", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298176-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0f04296b453b3eee54f0bf6b9f0b286e", "x-ms-return-client-request-id": "true" @@ -1056,42 +1120,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "36dee303-dde9-47b5-95d9-968a48ddfb86", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "de045e98-2322-488e-b60b-77895b01d8b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/dbd29de157df469586984c79c0395be2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f003534a561bf4f18a814b1453ac73267", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298177-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "50892d1c11527fd2796c89caeeb559a6", "x-ms-return-client-request-id": "true" @@ -1103,42 +1168,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e7dfba9b-bd10-4f2d-a55c-fbc2fc9dbdaf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "72cbaf37-a7a6-444a-845d-11690f575967", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0e4d65102f224906883b804707c881ed", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fd9f4adb9a7664b25ad0540c5e1522031", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298178-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e95bce27ea8a20f9b0c3db9fa0accde9", "x-ms-return-client-request-id": "true" @@ -1150,42 +1216,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2ceb2327-5981-4893-802b-269224c65778", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a669ee04-1d5d-41aa-bffa-86caa1a8a290", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/c239e908940e43f6931d08b350159719", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb6fba31d52844c0bb8ff8104ad322cfe", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298179-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5e6dee9f4ff15aa4568596cebb23509f", "x-ms-return-client-request-id": "true" @@ -1197,42 +1264,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "df3d7489-3db3-4fa7-92da-131b2c34503b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ce5337b7-af4b-4343-837f-e4b612c7e238", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1e53c5726f4d4a628cc572e36fc20359", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f294b6cbf76464bb896a17acb6ff77c12", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d14418973eaf31e433699f8e3532decc", "x-ms-return-client-request-id": "true" @@ -1244,42 +1312,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "54ddbf6b-1db4-41df-8661-275c3580b55e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b8e41e8a-1946-43ad-802b-8af1a268def7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/853ebbd5533f41a7b6dfc99ce3054e4b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f563851c769c84705ae3c0d4477f46982", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ff2b9f9ffb48d8b529019304542b648c", "x-ms-return-client-request-id": "true" @@ -1291,42 +1360,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c1d3377d-aef5-4c5a-9ffe-c9848145bd70", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "786db50d-5f78-4e4c-9950-8edaaf2fa616", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ca76820ecbfc477a95a94ce5b3636e8f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f75f2a4f79046467a814163354007cb8d", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "87083c72fb6860390a3b2a87af152424", "x-ms-return-client-request-id": "true" @@ -1338,42 +1408,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "be07e234-58d1-4c7c-92e0-be6544787f0c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "41e5d434-edce-441e-82f5-ae645544ab39", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/5c6af71d6a5645538b102c00f220631b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9633c3b7354a4c61ac6e6fef83bb9392", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1c2fc9a651f89c56636ca8aeabdfdd08", "x-ms-return-client-request-id": "true" @@ -1385,42 +1456,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "504ab90b-deba-4b09-8fcc-078ba81d1c5e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0a822fd5-19e0-434c-8b83-b2c96d9f1cc2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/81b33de0793548fe9961ebf2fa9b3d50", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f966a47bd74cb4d3592967be2caac1dce", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f81c1304562aa36465caf40cd02d2813", "x-ms-return-client-request-id": "true" @@ -1432,42 +1504,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2a6bd282-8cad-4a48-8197-30fa94d5b675", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b2c2eb1d-c2e1-47a6-9746-698e25248147", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3d56ec6b4a8a4c02a9997527eb7c95f9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fceeb3678686e473384a80f994ce50388", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429817f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8a5d6edc48fb2193e66b24fb538ab42a", "x-ms-return-client-request-id": "true" @@ -1479,42 +1552,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f6cbb807-8f2d-4af0-b854-a74310c5f590", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "94cf171c-6f83-49cf-927a-afcacf5777b5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/9b8f392c39b74181aefc5d9ba2b85af0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f35c09ec87bcb4d648447935e5af71d12", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298180-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9c82215e2bf950f9658cb62d5c4acb36", "x-ms-return-client-request-id": "true" @@ -1526,42 +1600,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1f74b3b7-57c1-4135-95ef-90dcd47d0562", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0826d0e9-fc4b-475c-9930-57c5cf25d3cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f991d99a3c9342b68a197a636425c485", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f1f09c6ce9fd94af9bc674788f5501f26", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298181-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3cd294435382bc0d7ffa12be32684fda", "x-ms-return-client-request-id": "true" @@ -1573,42 +1648,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6aaa795b-7feb-46de-bffc-d26e8feb448d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d92a2475-6624-4895-b3fb-ec9d179abbf9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3d3d98d8d4e14fa5820fc048f98371f6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe308840821644b3b9a2db20b9506808b", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298182-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "aeaeca168caab01a750d246f9265c59b", "x-ms-return-client-request-id": "true" @@ -1620,42 +1696,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "1a2e15e0-36c9-4b21-ba7b-3982d1a4133b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75c07a0c-d4b0-4cc6-832f-0a8621382944", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/e127255f7b3f48b09d67fadcfd44fff4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f2cadae8850a04aee9eb5e158252b7b4c", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298183-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bfb8eea077b80ba814c61cff183a1efc", "x-ms-return-client-request-id": "true" @@ -1667,42 +1744,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d7ec3fbc-33d3-4227-b0b8-4f82907a5786", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "731d77f0-4eab-44a1-80d1-633d6c1ee4d0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/750a9cc1bd96440fa5034697cf7f2b86", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe481b3b81a8c43869d592589ac2ef013", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298184-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9217db3c1d9bb68b7a22c7752e9d2a19", "x-ms-return-client-request-id": "true" @@ -1714,42 +1792,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "66d1115b-1a20-4f64-8219-f31dec7de432", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8ee09314-5240-4f95-aa76-6a1b15f874e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2d0285aa7e294610a8a2839b4c7c498f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb72517a2454549a19737171a859a85e7", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298185-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "431e77348fb09e2221a39ae3701a973a", "x-ms-return-client-request-id": "true" @@ -1761,42 +1840,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:56 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "683f8810-beae-44b2-a15d-9a6f96df5b97", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "05e3ddda-7761-4881-8cdb-96a7a56aafa2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/7a14a3d66d7b4570ab81c3dd15dbae13", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8de99e3eff8043609db60c8c82b39788", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298186-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b63228ee334e830062014596b033dc76", "x-ms-return-client-request-id": "true" @@ -1808,42 +1888,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6a550934-0f26-415e-96b7-912e692e2ed5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ac9385df-e8c4-430f-bea0-199cb5c5b0fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/64de56931a264fffb9150ac5b5025815", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f570254bb0c29497ab1e6efe9dcb17a8b", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298187-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a1ca029cda1bac4bb97970f882a8465f", "x-ms-return-client-request-id": "true" @@ -1855,42 +1936,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3d72a0db-2e7a-4de0-821c-ae19f067691b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6b8fd010-dc63-4ac9-83be-f2942833a979", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/8002cba9a5c84447a38ed393be30e3dc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f403e4d20f1854dafa529d37b1577c16e", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298188-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "06868c8a736a01cb769be1af4a8ceeee", "x-ms-return-client-request-id": "true" @@ -1902,42 +1984,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4c8e1fce-62cf-48a8-b0f1-24ddce6663c1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3d0e11fe-9eb4-45f4-873e-2df173988c4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/55a13b9931d74f0a8aa7ce8eca7cede0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f82617217b777433aa79dfa95add0c12d", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298189-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6d4623c6f550131fdc86fdd5c30700ba", "x-ms-return-client-request-id": "true" @@ -1949,42 +2032,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6fb18520-0899-4b05-be17-4c0509a71f04", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "60cb0696-c111-47e1-bd59-d77b70a05fd1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2787fd19bd4242ce8eb122907c9781eb", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f248bc9a6e10c4069a38497bc9e6547ed", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "230ce6bad6ac290c37c92a7ff99c622d", "x-ms-return-client-request-id": "true" @@ -1996,42 +2080,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a05acb91-b9f1-4559-ae92-1843e24bccbd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b02858d4-bc67-435d-8212-8c3a795f2856", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ee63e194b3194633a5c1ece42eefec28", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f2270057e3d864651a578f1eefc5adba1", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5f32818ad861940e6d7229e475f63e6f", "x-ms-return-client-request-id": "true" @@ -2043,42 +2128,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "86ac15b4-00d9-4913-9424-d23cf8dd1deb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7b18f7a-7322-4613-b0c1-e4ffcbd1d7c3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/af67dd41fec24dc48289ad05b4cdf3bb", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ffa89f857203340a383bb4ba666cb3762", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "63f5269bca80f042161d3687cb9f1a40", "x-ms-return-client-request-id": "true" @@ -2090,42 +2176,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bafade79-9b2a-43b4-b6e1-915653d39326", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d848216-169a-490a-b2da-3f0ad45c47a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/239b6924d5de46909ab7f43a90dc7107", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff3c34e1f20d849cfb8e5c6366f4f80dc", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "414ad024a0d4e158d777b639ac27b340", "x-ms-return-client-request-id": "true" @@ -2137,42 +2224,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "acd158fa-003f-48d9-a575-990285318c1e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fb1c1d99-06bc-4885-a367-3a8593f84be1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/80228a25b3e94e3c843c04cc2f72943f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fc7dd4ad4406d4281afc40c65f90690ae", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d2e4ba8bfea7c0ac3f424843a287c9ce", "x-ms-return-client-request-id": "true" @@ -2184,42 +2272,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "935c6674-242f-449d-95d4-ac85c00ee2c2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "83d20f88-9bd2-44bf-8927-2335dc5b0145", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/e33d846f268d45dcbcc9a37e01f92195", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f217ad5fe91884160b99ac605e82d0ef9", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429818f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a5c0e958fcabfb9bce138b08140843ef", "x-ms-return-client-request-id": "true" @@ -2231,42 +2320,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4aa54cbb-caf0-4a0d-83a1-2bed82823747", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9e3cb56f-db51-4f95-9bad-ec63901b946f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/73eb101512e54a93b0c48130bc5445ae", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f072db111ab9141559ad9bf40b37faec9", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298190-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "10fcf56a47ba2599238a029257143f50", "x-ms-return-client-request-id": "true" @@ -2278,42 +2368,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ef63dbaa-87b6-46ac-b7da-d078a2dc2989", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4a309617-f7d9-4d42-b0f3-2396881f0ad3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2e8bcd11c0cd470782f2e95aa13b6987", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f67c1c8b5723348be8f1aca1200000bc3", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298191-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c3e1e7ae0e678e941fe9049372a4ab36", "x-ms-return-client-request-id": "true" @@ -2325,41 +2416,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c2d7502f-bf66-4b31-82da-7f878ec21e93", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8c15d7eb-a062-4afe-97e5-55a92fc0576c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/d2b3b5c847df43ffb2a59351bfa9136a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8085eb29eb3e4ae58811bd7a612f13f6", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298192-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "acd959feb88a10134f9a8121f908a3b9", "x-ms-return-client-request-id": "true" @@ -2369,261 +2461,262 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "5645", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:58 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5a909364-567a-44bc-8460-7b5b086a5da3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f225966f-c7cc-404b-9c9a-950e9a20b3fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/00878543d71845b089d65d3419112a0b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f003534a561bf4f18a814b1453ac73267", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0b9bbf22accf430f84024e3c2de8553f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f072db111ab9141559ad9bf40b37faec9", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0e4d65102f224906883b804707c881ed", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f0d1f0be2223349999034c7e5bf96733a", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/0fcc653261bd46cfac0193bae10db50e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f147ff668eadb4c8fba857fe88b041a69", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1c6ae17f24ba49e498ea18b72ef78a7b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f1f09c6ce9fd94af9bc674788f5501f26", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1d5fb56a78324c6fb9bdf813a23adaa7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f1f7824772f1d4751950efe137c7982dc", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1d712dab0fff42d6bdd9abb0f25e7385", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f217ad5fe91884160b99ac605e82d0ef9", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/1e53c5726f4d4a628cc572e36fc20359", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f2270057e3d864651a578f1eefc5adba1", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/239b6924d5de46909ab7f43a90dc7107", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f248bc9a6e10c4069a38497bc9e6547ed", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2787fd19bd4242ce8eb122907c9781eb", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f265039b88ef14177ba9569f06dc953bb", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2d0285aa7e294610a8a2839b4c7c498f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f294b6cbf76464bb896a17acb6ff77c12", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/2e8bcd11c0cd470782f2e95aa13b6987", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f2cadae8850a04aee9eb5e158252b7b4c", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3539eabea96548a1ae8c1f35e19e2fe7", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f310e18f5b5dd422a9651d5606adec1da", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3d3d98d8d4e14fa5820fc048f98371f6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f35c09ec87bcb4d648447935e5af71d12", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3d56ec6b4a8a4c02a9997527eb7c95f9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f403e4d20f1854dafa529d37b1577c16e", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/3fa43798cae5453cb76f17fb9d2c8ab9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f563851c769c84705ae3c0d4477f46982", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/55a13b9931d74f0a8aa7ce8eca7cede0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f570254bb0c29497ab1e6efe9dcb17a8b", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/5c6af71d6a5645538b102c00f220631b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f59fbf24e0ace40c193b35bc578cc9278", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/6471bdcbfac5453784b3618961c289cc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f67c1c8b5723348be8f1aca1200000bc3", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/64de56931a264fffb9150ac5b5025815", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f6c48eaae2eab4d219a0b06a84840733e", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/6bc9540fee964384993228008980e1c9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f75f2a4f79046467a814163354007cb8d", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/73eb101512e54a93b0c48130bc5445ae", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f7ffe7751a1154cc6ac391a5d2ec25128", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/750a9cc1bd96440fa5034697cf7f2b86", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8085eb29eb3e4ae58811bd7a612f13f6", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/7789408a0ed74639818b578e01427115", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f82617217b777433aa79dfa95add0c12d", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/7a14a3d66d7b4570ab81c3dd15dbae13", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8433c7e944994556a2eadea136848289", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets/449688869/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODBORGsyT0RnNE5qa3ZPREF3TWtOQ1FUbEJOVU00TkRRME4wRXpPRVZFTXprelFrVXpNRVV6UkVNaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets\u002f449688869\u002fversions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODBORGsyT0RnNE5qa3ZPRVJGT1RsRk0wVkdSamd3TkRNMk1EbEVRall3UXpoRE9ESkNNemszT0RnaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODBORGsyT0RnNE5qa3ZPREF3TWtOQ1FUbEJOVU00TkRRME4wRXpPRVZFTXprelFrVXpNRVV6UkVNaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fversions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTVJWE5sWTNKbGRDODBORGsyT0RnNE5qa3ZPRVJGT1RsRk0wVkdSamd3TkRNMk1EbEVRall3UXpoRE9ESkNNemszT0RnaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298193-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "2c593bd480265b87606df0d14305b37e", "x-ms-return-client-request-id": "true" @@ -2633,244 +2726,244 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "5327", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:58 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "90c4a2f3-fa8e-45c5-a89d-8ae4a3c1e7c4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b9de5199-9898-4463-9a98-20d0b07b5987", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/8002cba9a5c84447a38ed393be30e3dc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8de99e3eff8043609db60c8c82b39788", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/80228a25b3e94e3c843c04cc2f72943f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9633c3b7354a4c61ac6e6fef83bb9392", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/81b33de0793548fe9961ebf2fa9b3d50", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f966a47bd74cb4d3592967be2caac1dce", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/853ebbd5533f41a7b6dfc99ce3054e4b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f969569f88a4b451b8dca00d549f90975", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/8ce55a10144f4c7696a8836c51c9a3d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9db5b1f7dbe9449db406af55775f6798", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/981d23160dc444b2802f31f38678724a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f9f86358d1aec4e04bfc6d18b06ae711e", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/982742d729de4b9e8d70f3c96b20c7bf", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa2206f2ec4fe4e879d3bfe9891a4b60b", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/99ff74b6762c48139692735a60d64480", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa2e6a7b7257b4ffc8038d4c8b5f2448d", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/9b8f392c39b74181aefc5d9ba2b85af0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fa8d682b74b714a5385c021607323c331", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/af67dd41fec24dc48289ad05b4cdf3bb", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fad78f439a27d436cad4afeebeff8b027", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/c239e908940e43f6931d08b350159719", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb4ccc439147645f1ba88deef21f0aea1", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ca76820ecbfc477a95a94ce5b3636e8f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb6fba31d52844c0bb8ff8104ad322cfe", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ce3072435ad0468090181db9a1ce2bf6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb72517a2454549a19737171a859a85e7", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/d2b3b5c847df43ffb2a59351bfa9136a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fb7bb274c548f4f14a96dbdee79c6cf87", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/d732a93a82474b9db10372dd95fe4111", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fc7dd4ad4406d4281afc40c65f90690ae", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/db51048c2e71438a9f4c9a5fbc4bb432", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fceeb3678686e473384a80f994ce50388", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/dbd29de157df469586984c79c0395be2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fd94b8243adfc40e29761fbf58bb9aa05", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114185, + "updated": 1565114185, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/e127255f7b3f48b09d67fadcfd44fff4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fd9f4adb9a7664b25ad0540c5e1522031", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114187, + "updated": 1565114187, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/e33d846f268d45dcbcc9a37e01f92195", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe308840821644b3b9a2db20b9506808b", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ee63e194b3194633a5c1ece42eefec28", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe481b3b81a8c43869d592589ac2ef013", "attributes": { "enabled": true, - "created": 1560804357, - "updated": 1560804357, + "created": 1565114188, + "updated": 1565114188, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/ef34f0722dc9491486a35c8fcb425544", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002fe67c959ce4ca4e4d8d64f1604bf6d9bc", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f3b5f2147c33455890111d105b79362b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff3c34e1f20d849cfb8e5c6366f4f80dc", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f76b108d69f944f78144227c3c2b1e36", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff3d7182cd8264bafa0afe086444d24e7", "attributes": { "enabled": true, - "created": 1560804354, - "updated": 1560804354, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/f991d99a3c9342b68a197a636425c485", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ff4db812e3ba94d378c4107860498fe54", "attributes": { "enabled": true, - "created": 1560804356, - "updated": 1560804356, + "created": 1565114186, + "updated": 1565114186, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/fedbd2c71516418dae6467ee30dd24fa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002ffa89f857203340a383bb4ba666cb3762", "attributes": { "enabled": true, - "created": 1560804355, - "updated": 1560804355, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } @@ -2879,15 +2972,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298194-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fd94cbde923bf5c5d4d073cc8c739417", "x-ms-return-client-request-id": "true" @@ -2897,69 +2991,70 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:45:58 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:56:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e1e9e3fe-117e-409c-8f9f-1f03fd8787c4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3dadad92-771d-4d13-867f-3386f04c9e1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/449688869", - "deletedDate": 1560804359, - "scheduledPurgeDate": 1568580359, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/449688869/d2b3b5c847df43ffb2a59351bfa9136a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f449688869", + "deletedDate": 1565114190, + "scheduledPurgeDate": 1572890190, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f449688869\u002f8085eb29eb3e4ae58811bd7a612f13f6", "attributes": { "enabled": true, - "created": 1560804358, - "updated": 1560804358, + "created": 1565114189, + "updated": 1565114189, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/449688869?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f449688869?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429819d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e453c63644d671be36eb2ac9ba4c3702", + "x-ms-client-request-id": "63b970ad15b3f86ae925be5c88737df2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:46:19 GMT", + "Date": "Tue, 06 Aug 2019 17:57:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5610fb16-5e64-437a-9e0e-4c3ff86b6fca", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bfab0e46-1a1e-4aad-98c2-f48e933c1db8", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1501598671" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersionsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersionsAsync.json index 0ff74e580bb1..d0000eb75e68 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersionsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/GetSecretsVersionsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298444-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "1509274108d44097f936e903f534b65c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a2daad57-dd06-4066-8ff4-20f2a8acc43a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298444-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1509274108d44097f936e903f534b65c", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "eadd994a-8f08-4499-b8af-316f86bfcea1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "123d2912-f676-420a-85d1-e416e067c436", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "0", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/ff20ef209c7d4d55917f4fc8949da222", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f93414b67371a4eaea9c0abc29907cefc", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298445-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e8c494c4a1afb22332f17b5b277d9077", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "10091905-154b-4143-b447-6b1a0e1420b8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8f4c17c9-a942-493e-b3b5-0cec304fbaee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/35c6a25f731842b8a54da12bc9637658", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f8e973c27d01648c29518e0b6000ebe6b", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298446-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "486fb23b026882d8d9bedef6e54a0bed", "x-ms-return-client-request-id": "true" @@ -116,42 +160,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "115a07b3-7811-4456-956b-e0acd014f567", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e0ad0e83-b2ee-498f-89a6-6037c27e319f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/115382984c724185b1c41ff9fc7920de", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002faedf39893450460b998eeb45b0fe4f58", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298447-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f4879a3fa5759ff50456e2e38d3b187b", "x-ms-return-client-request-id": "true" @@ -163,42 +208,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "98b648a2-1716-4a98-b283-9d7cc3c169a7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5b437b67-ff03-412d-b846-191c0bed3342", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/54d896aa72ed46f287d0e3e1aede3636", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fca880f8a5e84434792c1ab01d343e85b", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298448-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "42c871a56dc4c1f3bb410ef1c22ccce8", "x-ms-return-client-request-id": "true" @@ -210,42 +256,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e8e1c51-7122-4e9f-a162-af86b587d264", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1d9a3c74-f413-49ac-82cc-f833cfdb7964", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "4", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3154b1974187426d9b5eadb0f5ba4a6c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f5e03db8306224672b3a630da75474654", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298449-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8c1c8de59cf69502bdcf44111ff4f49d", "x-ms-return-client-request-id": "true" @@ -257,42 +304,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7ef6e920-3825-4a5f-b927-781b43a45d0f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "28efe21e-9401-4ccb-bd56-05ee49d750a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "5", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/c9342e4afdb748bba73f44105d5d51dc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa7bb753a479748529d5139c27c9e75dd", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "745063a6c982d228a7c638339604dcd7", "x-ms-return-client-request-id": "true" @@ -304,42 +352,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "91c5459a-cce4-4732-a944-91f39256664c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "42261efd-1087-4b59-9450-367d186add24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "6", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/5346a43e18d44df3bde0fe92772aa394", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1daa8fd3c167448f829927cd3084ae65", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fffefa898c1f09856e3285f428e1a1c7", "x-ms-return-client-request-id": "true" @@ -351,42 +400,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8cd675a3-a312-45fa-9870-2a4dd21ce8be", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7bd02c79-4890-461c-b7d9-5c5ba5ed73a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "7", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/ac367a56a4504ada9d1a434b497615aa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe3e85b4f27d8435a9b7a1ce656f02d0e", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5f4a714d58db1c666549e53064cfffb8", "x-ms-return-client-request-id": "true" @@ -398,42 +448,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ec633fcf-fc4a-4093-95d4-6cc3f196f03d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "685b41ea-6047-4ef1-b562-4e9ef088a539", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "8", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/274a5cc61ff1473098d7b951842c5678", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2e4936bbdf5d4bdea27cbb70c22a0e30", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "13", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "25886cf2f5f61a7ddd47054f4333a9c5", "x-ms-return-client-request-id": "true" @@ -445,42 +496,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "224", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:15 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "31363183-7830-4d87-9337-0dd292d962e7", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75c2c0c4-c771-44ae-8e40-720e4eb0e193", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "9", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/29b6874814424451bf803ce5563944b4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff811be2633134cbba089662d450228b9", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "24e671247db931fc94e29ad5a655a59f", "x-ms-return-client-request-id": "true" @@ -492,42 +544,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d1a11c83-308e-4d1e-82a0-8d7c2dafb45b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3002a0aa-3e13-4396-9b59-4ce43eb72c8c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "10", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/9f2a3e6edf504852afeb7adc4d2e52f5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f4b83af21576745e38eff5825dc008d72", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429844f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "bb02cd337c5958d0f43081935316d831", "x-ms-return-client-request-id": "true" @@ -539,42 +592,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "33d1e852-89b8-46bc-af0f-04585debf618", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "345de224-e7fe-4b25-8346-c99ef0c1d39d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "11", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/86d13cdeb7284a6d9b64ce7c1d46617b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f3540fdef825d470091e110df967198e5", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298450-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f30b1f9fdae975fe705690145aa77388", "x-ms-return-client-request-id": "true" @@ -586,42 +640,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c8ed0488-5626-45d2-a9d5-a0fc2501b8e1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ddb1186e-5359-4a12-824d-09e0b3597959", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "12", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7f8ebce8bad34d12be15a59f21d21703", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f6d8859e1f92f4cc287dcadeb92b27846", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298451-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "761b65a2ed31a76ba08d3088fb68de7d", "x-ms-return-client-request-id": "true" @@ -633,42 +688,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9096d829-b87c-46c7-97ff-231ac7e0d7fd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d1ef64bf-1f3f-4bd1-bd8f-c1560718f3c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "13", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/a88472291fa5423583762afa40bb43aa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f60ecd630c7ad477e86c20dd7aa3a4e70", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298452-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "86356909b24959b6cf8c4b02ebbbfd4c", "x-ms-return-client-request-id": "true" @@ -680,42 +736,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "cd1391ec-86fc-4b14-adc2-7039a6853986", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0a912781-cc68-4ef8-8d6b-8872c095c164", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "14", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/82dd60a2465a43b8b87ae99401fcfa16", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fec261c0b634f494badd4d5289c3f32ed", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298453-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "edf1f9bd62fab1ffb463525ba9757a07", "x-ms-return-client-request-id": "true" @@ -727,42 +784,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "24048360-1a9f-437c-b7ad-d097312cfd0f", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8d71e356-4266-40fb-aa2c-c4208dac21e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "15", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/14b7c783bf9e461f9d569ffc9916f423", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fcd17d4728b404b2daa6883582867a460", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298454-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f10a1278ec71ef3fafc2a7a4a268bbe4", "x-ms-return-client-request-id": "true" @@ -774,42 +832,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f7d93202-aa7e-4f51-bd53-896a883e595b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "860f4513-a5da-4b7f-b88d-ac5990d10a98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "16", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7e75c8ede01244f88ae4028f10c8d3c3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fc46fe2cb25274602bb60e09fad554694", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298455-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "02cbe490f076a7826983d2e5605aaf59", "x-ms-return-client-request-id": "true" @@ -821,42 +880,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6e084444-72f2-4b1b-a0ff-cbfe434dfade", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4b2766e8-9037-4166-b033-0a35311a7feb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "17", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/f6825fc539554fc88421bd33922ca068", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f18d4d14bcd164f3ab1e80109a0a5b336", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298456-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d98a44120cb1d0daba023d38bb5a0f4b", "x-ms-return-client-request-id": "true" @@ -868,42 +928,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "fd0851b3-380d-4f9b-9704-c0761cb769f6", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b1485096-4ab3-4f77-8328-7d98f9c9e99d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "18", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/8eac8e6bbc3b4d3684bc5609184fc99d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2981715eada54a5ea715923492e3ddda", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298457-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c5cb6da777a987908f6387ee1a598f54", "x-ms-return-client-request-id": "true" @@ -915,42 +976,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0d9fff94-de92-466d-95a4-523e6ed1916a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1118e7cf-936d-445d-a27b-7926b5a8b16c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "19", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/8b8b322e0c384f4ca53cf0deb10355c9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f443050dd78b148cf83be25cea31e5808", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298458-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5d924d12e2de83330afb4874b34aec0e", "x-ms-return-client-request-id": "true" @@ -962,42 +1024,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5229d46f-8ce7-4e58-8c81-c2b15f6b2f1b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2acd41ac-9237-40ae-b037-25dd55051ddb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "20", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3f53c036d6854aecbda4205d5d9ba7a2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2948fde3cfb8403089de20610dae3635", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298459-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f23d8674ea8f9aafb302494e85ecb560", "x-ms-return-client-request-id": "true" @@ -1009,42 +1072,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0fdfebea-4c90-44a9-8075-398f2b524b1c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ed0960b5-e1f7-4d46-8821-b6d647c3bb03", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "21", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/86d8d756f5c2428ea07cec914413354d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f9a358a1a3aeb4e03bdc28b18ecad60d6", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6d25e872b1c8c56c3947bbae2f1cd445", "x-ms-return-client-request-id": "true" @@ -1056,42 +1120,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "995c7919-140a-4152-8aa1-55c444705a60", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "18308f8a-7988-4491-8817-32e93a48e625", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "22", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e39781d82a6d492699a91b8f55cfb7fe", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe890ea095b90478a84946db6bf62c553", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "937978769c1c28c59df7aadb99e5fe1d", "x-ms-return-client-request-id": "true" @@ -1103,42 +1168,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:16 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "bd2ffaf5-c21f-4711-a298-1d071aa4b663", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b801b217-1840-47ff-b615-702be166950c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "23", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/444e670a36e944459ee6b5d7a2d3cc25", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7d4b82de101342e28f6f9976f6fd8565", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ca01e7457e25c2461978b8472f016a96", "x-ms-return-client-request-id": "true" @@ -1150,42 +1216,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "82517f42-7bcb-45d6-a02e-7bffce8e7af5", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ea8ba638-17c3-4203-9b36-5986cbc2a933", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "24", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/b1ac7fbb6a2847e48ddbd7ce2f9b5538", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f820dd8615e2747539a52bae685b57aae", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "0cd7042e2272d54423fcd0d007912b54", "x-ms-return-client-request-id": "true" @@ -1197,42 +1264,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9df45a1a-fb82-4c08-a651-d7bf146c6263", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4701e976-1125-4ccc-ac55-1df046a35ef9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "25", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e83fa3357a31417faea8091f707551e5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa5c6a0d8d5524060bd0e4cd239350b16", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "48699d490a1af81f32b779a3e37ef99c", "x-ms-return-client-request-id": "true" @@ -1244,42 +1312,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "12fed1ae-ee33-41ff-8632-6fc763c2eacc", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "731e0293-f41c-4709-9669-bbc59eab9b6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "26", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7fa49bb12ddf411a80970a8757835d6b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1f826e1f73ad4cc98619083796d779be", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429845f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "95ad138cf10e23aba32ba628ae75bb88", "x-ms-return-client-request-id": "true" @@ -1291,42 +1360,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "170cfb95-04f0-4e43-aba4-0199acbffcb9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dc407809-7ade-48f1-ad45-94535c618e40", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "27", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7dc01639e8314287a968beb96edb537b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff08ef9ed8d0b40d2abd7da4de64777c7", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298460-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "91fd644d2298237be4dedabba8a0f1a5", "x-ms-return-client-request-id": "true" @@ -1338,42 +1408,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "64dd86bc-eac7-43cd-baf4-1deadcc80093", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "320d2840-69f4-4f41-bf04-f0ecebd69cfe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "28", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/a4fab4a35538464a95648d69e8d06c05", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa57004879a974767abb75010a0af6395", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298461-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f343330395e35846f245a4ef63f74abc", "x-ms-return-client-request-id": "true" @@ -1385,42 +1456,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8e1c360b-fa1c-43d5-b772-f86fbd048038", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c95d4065-2a44-4b8e-a3cd-bb9f659b126c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "29", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/32475326b1f249588abdc9e96ffdb5d0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1d0f53774d434930904954f50a29a60b", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298462-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7f56f1fc67806a049889b12f17f07b02", "x-ms-return-client-request-id": "true" @@ -1432,42 +1504,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f7a7aa43-c06e-4b68-be87-05fa5e59a7a1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0e15b760-3e55-4a91-8aaf-5c7c50511577", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "30", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/2cdb680361774a60a307d5e115749da6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe398b060960842dab09e81a4d3e82725", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298463-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7a250139c831b7a41ea59f527e8cbfec", "x-ms-return-client-request-id": "true" @@ -1479,42 +1552,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "47117142-c293-4453-ad4d-096586d2c327", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "38f210ad-5f67-45c7-b8de-248817992744", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "31", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/504d89eb90694b2e8300e92e4a076519", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f998387b2316a45018a09b3d7ea379a65", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298464-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b7be1d94724a9b242fd95a59e4164001", "x-ms-return-client-request-id": "true" @@ -1526,42 +1600,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c363ed86-348a-4408-bda0-4303c4b32f9a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2cbeddf1-0313-46d3-a504-889a370a19ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "32", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e4b762e584ca41219446a66710cb62e5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa15603b8f5494bf99d2ea4914504851a", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298465-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "62b5a1cacfd1348a4c9e61dac7b1ec0b", "x-ms-return-client-request-id": "true" @@ -1573,42 +1648,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f865547d-afe2-4429-b80a-a204d9f26c1d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a2a6bdc2-8682-4bff-8441-c0be2a807584", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "33", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/2e0be1bd67b34679bf11398e1d1ae1b3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff76380cdd7fa45b09022531505092e67", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298466-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f99ac4c9c331c7b8dc894a586d4ad307", "x-ms-return-client-request-id": "true" @@ -1620,42 +1696,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ab9a41a3-9254-4610-86d7-fa6630fbc476", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d99a5501-1016-45be-bd36-09cc24b32368", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "34", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/6b1029f704934117a741c63939052fe0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002face77f26fedd4526b14753c6c9ae8be4", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298467-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dc879d655dd7c41a928a6aab104ad37d", "x-ms-return-client-request-id": "true" @@ -1667,42 +1744,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d5208350-99ab-48ed-90f5-b1ca957614bb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "57c8fd1c-e8bf-4e9c-b3c6-bd45527b5802", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "35", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/942d53e4b1844707b950a075dca06b67", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f0ebd7ac999ec4562a0c0a06857c34e6b", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298468-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1f8f4fed477b06d0e8ed85488532c701", "x-ms-return-client-request-id": "true" @@ -1714,42 +1792,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "313594ca-e69f-410b-bbfb-d36fda0b9552", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "088f3d67-0196-4db1-838f-d4665f3256a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "36", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/d08cc53016b64a4098740317e712e983", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f5652f66dff6d4fbbb852b81b65747573", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298469-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "29755acb0f2a6c34aad666a6590db692", "x-ms-return-client-request-id": "true" @@ -1761,42 +1840,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f27f1127-e16d-48a5-b31e-b268756606f8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "381ccff1-640a-4081-ae8e-f1cf53a2ba07", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "37", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/fa939c5ead1140bfb18f122a281506d9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2f506a32c3ef4a31a24b22ae46068035", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846a-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1e6accb6b3ba1d8bcd80f3e9d7d23f60", "x-ms-return-client-request-id": "true" @@ -1808,42 +1888,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "234c7c3a-7169-42da-aeb2-0137a83d9c06", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c7769229-2173-479a-a7a0-3d35e451baee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "38", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/21314c7ad227431ea77aac616305df12", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7903ebe4625744f4a199273a7ef0e72e", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846b-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b6df69c3a9d4dd531a2375a5e029addb", "x-ms-return-client-request-id": "true" @@ -1855,42 +1936,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "29811602-7800-48fe-b387-06e8fa1330b1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fc8e7994-3bb1-4818-81e7-704e89aa1a1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "39", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/45cc37d1b5834fb4b5191de78b7aa3a6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f6c947ac0f5f942f79a470e0daf5f74f7", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846c-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b891f336a9c71746ce575ca91b4b95d7", "x-ms-return-client-request-id": "true" @@ -1902,42 +1984,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2c2e9b6f-082e-4108-9628-6394dcaa0162", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ad17d662-bd6b-4113-a714-17aed8ae7fff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "40", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/5011f62ed8a949bca658825a9f9f9978", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1f276fbf6bb1452cb9b5c1fe5245ab0a", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "efe20696002d0cbd798d03973ee53da3", "x-ms-return-client-request-id": "true" @@ -1949,42 +2032,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "55c3ec19-d9a7-4876-950e-ab2a0e65c2a0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d2ff689f-c7dc-479c-8a94-5fa6aad3532a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "41", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/0501401ef79c4b398662b916babff15d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fb70a491582b34efd910c123fd7bb50fb", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e3b218d286401a9822c8e77c4da9c2ce", "x-ms-return-client-request-id": "true" @@ -1996,42 +2080,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ec8f98e7-fa49-40c2-8c46-dfa6546c6aa4", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "348b8bf9-54c7-42c9-8b2e-b2c402858b7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "42", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/1c582accefd64b1494cbf3d8f20d5dcd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fcb936a0a1f5c4f91a8ed002d8865e649", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429846f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d90e9e8ebd4636ae36853f3aa5afd9e8", "x-ms-return-client-request-id": "true" @@ -2043,42 +2128,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c4b662ef-64e9-4d45-ad07-df3ef6b99292", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7b4da1f8-8abd-4901-ab8c-f39043988d97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "43", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/47682544e8f848068b70e2eae73bef45", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002faf925a059ae44a0689e90b673c110d7c", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298470-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "03d6b81ab19910966ec8cd651840bfcf", "x-ms-return-client-request-id": "true" @@ -2090,42 +2176,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c7e06ef7-2cea-48e2-8393-005b1526679d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "288bba14-4d5c-4ec3-928e-e0e3dd1c97d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "44", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7ecae72798b440839a208901f580e675", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f83f81d24872f4bb4bdefc5e83f399ca7", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298471-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a00934ca64d7145c6a7badbb465d7573", "x-ms-return-client-request-id": "true" @@ -2137,42 +2224,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "000211a3-0498-488b-a10b-e0dbfebdb688", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6b35a627-4e61-42b3-9a2f-5f755d909dc7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "45", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e10968c50bc44ba1b1da8c12d47ce971", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7b0797e638ea42d48d9421c6ebfd820a", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298472-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "9462feeebed2dc3507fe6b7ef0481df5", "x-ms-return-client-request-id": "true" @@ -2184,42 +2272,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6c24577-1a70-4932-be1e-fca50d05481d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6ccee4f7-7570-4e05-89cb-9fdb7345e754", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "46", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/12e69cbee44d42f886348cb91f29cb0b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f641ba214a2b14affb3beaea5a276b48a", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298473-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "706f70c638a6b6115cc2991d03dbc910", "x-ms-return-client-request-id": "true" @@ -2231,42 +2320,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "557d3f86-4dc4-4767-9e41-5a0d209161dd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5a2951fe-f19c-4202-96d2-811eb8a5389b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "47", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3d4d5bbde11e410d91134ae1fe9959b5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fd135e5e2e09e4b798496809372afdbaa", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298474-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "19765a532ade0bfcff2c98d8f8de2421", "x-ms-return-client-request-id": "true" @@ -2278,42 +2368,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:18 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "00a5a379-5b32-45dc-9bfa-fc564fe32857", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ac44f8ad-ea96-46f7-925c-b8439c523209", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "48", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/4176c8d0195b4d38ba8207c562eafbc3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fc9139b89fde74035951529dd10c5c964", "attributes": { "enabled": true, - "created": 1560804619, - "updated": 1560804619, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "14", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298475-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "d6f5b85d04edb6ccedac37102517d92c", "x-ms-return-client-request-id": "true" @@ -2325,41 +2416,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "225", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8442bd3a-ff4a-4dda-8d0b-ae615db9212c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d8b1d6e6-3545-407c-89d0-25c93d8350c5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "49", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/642d60153053404eb160d81d5a7d5a46", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f041e99716a774e15a4f955972a97daa1", "attributes": { "enabled": true, - "created": 1560804619, - "updated": 1560804619, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/versions?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fversions?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298476-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "962b5a3504d29b177364707a9f38bd7e", "x-ms-return-client-request-id": "true" @@ -2369,261 +2461,262 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "5676", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2d6f9d2d-19e0-49ed-b182-2473986beb05", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "771aad44-ca06-49e1-85aa-d80700adebfd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/0501401ef79c4b398662b916babff15d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f041e99716a774e15a4f955972a97daa1", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/115382984c724185b1c41ff9fc7920de", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f0ebd7ac999ec4562a0c0a06857c34e6b", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/12e69cbee44d42f886348cb91f29cb0b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f18d4d14bcd164f3ab1e80109a0a5b336", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/14b7c783bf9e461f9d569ffc9916f423", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1d0f53774d434930904954f50a29a60b", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/1c582accefd64b1494cbf3d8f20d5dcd", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1daa8fd3c167448f829927cd3084ae65", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/21314c7ad227431ea77aac616305df12", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1f276fbf6bb1452cb9b5c1fe5245ab0a", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/274a5cc61ff1473098d7b951842c5678", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f1f826e1f73ad4cc98619083796d779be", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/29b6874814424451bf803ce5563944b4", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2948fde3cfb8403089de20610dae3635", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/2cdb680361774a60a307d5e115749da6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2981715eada54a5ea715923492e3ddda", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/2e0be1bd67b34679bf11398e1d1ae1b3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2e4936bbdf5d4bdea27cbb70c22a0e30", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3154b1974187426d9b5eadb0f5ba4a6c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f2f506a32c3ef4a31a24b22ae46068035", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/32475326b1f249588abdc9e96ffdb5d0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f3540fdef825d470091e110df967198e5", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/35c6a25f731842b8a54da12bc9637658", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f443050dd78b148cf83be25cea31e5808", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3d4d5bbde11e410d91134ae1fe9959b5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f4b83af21576745e38eff5825dc008d72", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/3f53c036d6854aecbda4205d5d9ba7a2", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f5652f66dff6d4fbbb852b81b65747573", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/4176c8d0195b4d38ba8207c562eafbc3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f5e03db8306224672b3a630da75474654", "attributes": { "enabled": true, - "created": 1560804619, - "updated": 1560804619, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/444e670a36e944459ee6b5d7a2d3cc25", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f60ecd630c7ad477e86c20dd7aa3a4e70", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/45cc37d1b5834fb4b5191de78b7aa3a6", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f641ba214a2b14affb3beaea5a276b48a", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/47682544e8f848068b70e2eae73bef45", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f6c947ac0f5f942f79a470e0daf5f74f7", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/5011f62ed8a949bca658825a9f9f9978", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f6d8859e1f92f4cc287dcadeb92b27846", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/504d89eb90694b2e8300e92e4a076519", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7903ebe4625744f4a199273a7ef0e72e", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/5346a43e18d44df3bde0fe92772aa394", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7b0797e638ea42d48d9421c6ebfd820a", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/54d896aa72ed46f287d0e3e1aede3636", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f7d4b82de101342e28f6f9976f6fd8565", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/642d60153053404eb160d81d5a7d5a46", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f820dd8615e2747539a52bae685b57aae", "attributes": { "enabled": true, - "created": 1560804619, - "updated": 1560804619, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/6b1029f704934117a741c63939052fe0", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f83f81d24872f4bb4bdefc5e83f399ca7", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets/1672934053/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMelpETVVNMU0wSkVPRVExTWpRMFFUazVRekUzTURnMk1VTXlPVVk1TXpCR0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" + "nextLink": "https:\u002f\u002fdotnettestvault.vault.azure.net:443\u002fsecrets\u002f1672934053\u002fversions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMemhGT1RjelF6STNSREF4TmpRNFF6STVOVEU0UlRCQ05qQXdNRVZDUlRaQ0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMelpETVVNMU0wSkVPRVExTWpRMFFUazVRekUzTURnMk1VTXlPVVk1TXpCR0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fversions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMemhGT1RjelF6STNSREF4TmpRNFF6STVOVEU0UlRCQ05qQXdNRVZDUlRaQ0lUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298477-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4bbf779df2e64e238dc02c31f2ece6e7", "x-ms-return-client-request-id": "true" @@ -2632,302 +2725,265 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5676", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:19 GMT", + "Content-Length": "5352", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "853047e9-0ef9-407f-ab5f-054e18cc1d7b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "421afdcc-41b5-4269-beeb-4228688d4deb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7dc01639e8314287a968beb96edb537b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f8e973c27d01648c29518e0b6000ebe6b", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7e75c8ede01244f88ae4028f10c8d3c3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f93414b67371a4eaea9c0abc29907cefc", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7ecae72798b440839a208901f580e675", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f998387b2316a45018a09b3d7ea379a65", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7f8ebce8bad34d12be15a59f21d21703", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f9a358a1a3aeb4e03bdc28b18ecad60d6", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/7fa49bb12ddf411a80970a8757835d6b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa15603b8f5494bf99d2ea4914504851a", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/82dd60a2465a43b8b87ae99401fcfa16", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa57004879a974767abb75010a0af6395", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/86d13cdeb7284a6d9b64ce7c1d46617b", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa5c6a0d8d5524060bd0e4cd239350b16", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/86d8d756f5c2428ea07cec914413354d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fa7bb753a479748529d5139c27c9e75dd", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/8b8b322e0c384f4ca53cf0deb10355c9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002face77f26fedd4526b14753c6c9ae8be4", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/8eac8e6bbc3b4d3684bc5609184fc99d", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002faedf39893450460b998eeb45b0fe4f58", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/942d53e4b1844707b950a075dca06b67", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002faf925a059ae44a0689e90b673c110d7c", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/9f2a3e6edf504852afeb7adc4d2e52f5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fb70a491582b34efd910c123fd7bb50fb", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/a4fab4a35538464a95648d69e8d06c05", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fc46fe2cb25274602bb60e09fad554694", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/a88472291fa5423583762afa40bb43aa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fc9139b89fde74035951529dd10c5c964", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/ac367a56a4504ada9d1a434b497615aa", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fca880f8a5e84434792c1ab01d343e85b", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114492, + "updated": 1565114492, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/b1ac7fbb6a2847e48ddbd7ce2f9b5538", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fcb936a0a1f5c4f91a8ed002d8865e649", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/c9342e4afdb748bba73f44105d5d51dc", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fcd17d4728b404b2daa6883582867a460", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/d08cc53016b64a4098740317e712e983", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fd135e5e2e09e4b798496809372afdbaa", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e10968c50bc44ba1b1da8c12d47ce971", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe398b060960842dab09e81a4d3e82725", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e39781d82a6d492699a91b8f55cfb7fe", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe3e85b4f27d8435a9b7a1ce656f02d0e", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e4b762e584ca41219446a66710cb62e5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fe890ea095b90478a84946db6bf62c553", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/e83fa3357a31417faea8091f707551e5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002fec261c0b634f494badd4d5289c3f32ed", "attributes": { "enabled": true, - "created": 1560804617, - "updated": 1560804617, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/f6825fc539554fc88421bd33922ca068", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff08ef9ed8d0b40d2abd7da4de64777c7", "attributes": { "enabled": true, - "created": 1560804616, - "updated": 1560804616, + "created": 1565114494, + "updated": 1565114494, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/fa939c5ead1140bfb18f122a281506d9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff76380cdd7fa45b09022531505092e67", "attributes": { "enabled": true, - "created": 1560804618, - "updated": 1560804618, + "created": 1565114495, + "updated": 1565114495, "recoveryLevel": "Recoverable\u002bPurgeable" } }, { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/ff20ef209c7d4d55917f4fc8949da222", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002ff811be2633134cbba089662d450228b9", "attributes": { "enabled": true, - "created": 1560804615, - "updated": 1560804615, + "created": 1565114493, + "updated": 1565114493, "recoveryLevel": "Recoverable\u002bPurgeable" } } ], - "nextLink": "https://pakrym-keyvault.vault.azure.net:443/secrets/1672934053/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMMFpHTTBZME5FVXdRa1ZGUlRRNE9FUTVOekE0TlVNeFFURTVOa1EwUkRjNUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0" - } - }, - { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/versions?api-version=7.0\u0026$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjghTURBd01EVXdJWE5sWTNKbGRDOHhOamN5T1RNME1EVXpMMFpHTTBZME5FVXdRa1ZGUlRRNE9FUTVOekE0TlVNeFFURTVOa1EwUkRjNUlUQXdNREF5T0NFNU9UazVMVEV5TFRNeFZESXpPalU1T2pVNUxqazVPVGs1T1RsYUlRLS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Type": "application/json", - "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" - ], - "x-ms-client-request-id": "9ea36c538eb2594fa1596289935216b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "28", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000;includeSubDomains", - "X-AspNet-Version": "4.0.30319", - "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "eece4df2-5b86-47a0-ae42-ac5e9d4c0871", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [], "nextLink": null } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298478-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "ad73b9ef8d57424637dd0812d7e5a887", + "x-ms-client-request-id": "9ea36c538eb2594fa1596289935216b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2935,43 +2991,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:01:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "586484cb-d312-4e38-9c0a-ca628efb44ef", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8ecd2f53-b18a-4caa-b229-3c8c822e0db0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1672934053", - "deletedDate": 1560804619, - "scheduledPurgeDate": 1568580619, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1672934053/642d60153053404eb160d81d5a7d5a46", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1672934053", + "deletedDate": 1565114497, + "scheduledPurgeDate": 1572890497, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1672934053\u002f041e99716a774e15a4f955972a97daa1", "attributes": { "enabled": true, - "created": 1560804619, - "updated": 1560804619, + "created": 1565114496, + "updated": 1565114496, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1672934053?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1672934053?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429847f-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b7b2c8ae23d34218ccc611c9d6ea18f7", "x-ms-return-client-request-id": "true" @@ -2980,24 +3037,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:50:39 GMT", + "Date": "Tue, 06 Aug 2019 18:02:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "33698d98-95be-4c01-bf76-59908be056b2", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f692b527-68e4-4daa-b25e-f5788f19fb80", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "410807580" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecret.json index fbd01bdec953..1e9eb0925744 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/830319806?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981aa-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "febdb45612ce73fc44eb1429a4e8ea20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dd514aa2-4694-4152-9bda-0ca0b88ffa89", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981aa-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "febdb45612ce73fc44eb1429a4e8ea20", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:46:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0e0aeabe-d029-47a1-9624-687c36b31028", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "102f8b09-7d51-4d08-a20b-bf099dd7dd8a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/e5076061d3094dd0895d78954c4122d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002fab1e3e8880724a52af3756b803b131be", "attributes": { "enabled": true, - "created": 1560804379, - "updated": 1560804379, + "created": 1565114238, + "updated": 1565114238, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/830319806?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981ab-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4c9e313301b9a846394aca265f1b1245", "x-ms-return-client-request-id": "true" @@ -66,45 +109,46 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:46:19 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ae153620-02ab-4b7c-b47d-d1b34ad86111", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "22806fa6-ea3a-4f0b-91d2-afa4d5132b12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/830319806", - "deletedDate": 1560804379, - "scheduledPurgeDate": 1568580379, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/e5076061d3094dd0895d78954c4122d3", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f830319806", + "deletedDate": 1565114238, + "scheduledPurgeDate": 1572890238, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002fab1e3e8880724a52af3756b803b131be", "attributes": { "enabled": true, - "created": 1560804379, - "updated": 1560804379, + "created": 1565114238, + "updated": 1565114238, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/830319806/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f830319806\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981b0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "192c0d7e46b5c6ac0e32ae0f83714223", + "x-ms-client-request-id": "f87308e839842c5c4a7b9085b4478573", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -112,40 +156,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "211", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:46:29 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "7a0c2cc7-de61-44bd-89c8-b71b7d21f4ae", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc85ae7d-74fd-4c00-a3e7-10c4d8b054f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/e5076061d3094dd0895d78954c4122d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002fab1e3e8880724a52af3756b803b131be", "attributes": { "enabled": true, - "created": 1560804379, - "updated": 1560804379, + "created": 1565114238, + "updated": 1565114238, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981b5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e581bb824e0fc85db7e832a514e58e82", "x-ms-return-client-request-id": "true" @@ -155,41 +200,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:46:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ac59b078-23f8-458d-92a2-a18a3da12142", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c074db92-5caa-43a5-a329-6f8c26abf1b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/e5076061d3094dd0895d78954c4122d3", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002fab1e3e8880724a52af3756b803b131be", "attributes": { "enabled": true, - "created": 1560804379, - "updated": 1560804379, + "created": 1565114238, + "updated": 1565114238, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/830319806?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981b6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ef256ef38e71ee554c9283ac7ed0bf5a", "x-ms-return-client-request-id": "true" @@ -199,43 +245,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:46:50 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:57:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "75d3b911-c45d-4923-b71e-5cbdfee5505e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "85f5b61f-936d-4c76-a01d-c9bf3e72e57e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/830319806", - "deletedDate": 1560804410, - "scheduledPurgeDate": 1568580410, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/830319806/e5076061d3094dd0895d78954c4122d3", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f830319806", + "deletedDate": 1565114268, + "scheduledPurgeDate": 1572890268, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f830319806\u002fab1e3e8880724a52af3756b803b131be", "attributes": { "enabled": true, - "created": 1560804379, - "updated": 1560804379, + "created": 1565114238, + "updated": 1565114238, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/830319806?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f830319806?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981bb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b361e6a2fba69d3931e99fb66804329a", "x-ms-return-client-request-id": "true" @@ -244,24 +291,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:47:05 GMT", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6e4fb4c7-6d63-4f68-9be0-1a06a5e0ce35", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ba26bcae-8ef0-4efd-a585-26eadbc1ca14", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1147379450" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretAsync.json index 1ca9f50c0ed7..7ce365e6acce 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/911499493?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|429848d-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "182701b10e0e8c4bf3618039d0a1bbe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e78a9b4a-9c02-4088-b60a-05003698b4a9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "17", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429848d-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "182701b10e0e8c4bf3618039d0a1bbe2", "x-ms-return-client-request-id": "true" @@ -22,41 +64,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "126b873e-ca8f-4766-871f-62afb0b929c3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "942c7c74-b9f2-4edb-984d-8bcc9c80fe51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/1b9cafea0f7a4b5aa049a7d19035d59a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f3c008581cbbc478ba3ccc5a1f8e51f96", "attributes": { "enabled": true, - "created": 1560804640, - "updated": 1560804640, + "created": 1565114539, + "updated": 1565114539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/911499493?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429848e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "5c39231ec1d024bbc42ed764cbae0a79", "x-ms-return-client-request-id": "true" @@ -66,43 +109,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:39 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6e32827a-3514-4670-a6d3-db2783c9717e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c46ceb6b-92e2-439b-a950-14c6ad3eceb1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/911499493", - "deletedDate": 1560804640, - "scheduledPurgeDate": 1568580640, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/1b9cafea0f7a4b5aa049a7d19035d59a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f911499493", + "deletedDate": 1565114539, + "scheduledPurgeDate": 1572890539, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f3c008581cbbc478ba3ccc5a1f8e51f96", "attributes": { "enabled": true, - "created": 1560804640, - "updated": 1560804640, + "created": 1565114539, + "updated": 1565114539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/911499493/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f911499493\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298493-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "236714693f0ae9f8e93c5e2a22708747", "x-ms-return-client-request-id": "true" @@ -112,40 +156,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "211", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:50:55 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6b8a1d9b-7470-4c28-a277-4f958a3cd644", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "a33b8059-23bd-488c-888e-e1a7def7fd16", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/1b9cafea0f7a4b5aa049a7d19035d59a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f3c008581cbbc478ba3ccc5a1f8e51f96", "attributes": { "enabled": true, - "created": 1560804640, - "updated": 1560804640, + "created": 1565114539, + "updated": 1565114539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298498-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "593a75b512f9261e0d98d7791f0e88ef", "x-ms-return-client-request-id": "true" @@ -155,41 +200,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "227", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c79a1445-6892-4a4a-8e66-58d62bd1d765", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "fa0da691-4b9e-45f0-a398-2378ef438f85", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/1b9cafea0f7a4b5aa049a7d19035d59a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f3c008581cbbc478ba3ccc5a1f8e51f96", "attributes": { "enabled": true, - "created": 1560804640, - "updated": 1560804640, + "created": 1565114539, + "updated": 1565114539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/911499493?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|4298499-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4bf1158456ae444329bf3cf46e71f255", "x-ms-return-client-request-id": "true" @@ -199,43 +245,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:02:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e6c1bc9a-eefd-4180-a4b5-fcc585cce7c9", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c0f58d77-83a4-487d-b7b5-4bb81563a9bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/911499493", - "deletedDate": 1560804671, - "scheduledPurgeDate": 1568580671, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/911499493/1b9cafea0f7a4b5aa049a7d19035d59a", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f911499493", + "deletedDate": 1565114570, + "scheduledPurgeDate": 1572890570, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f911499493\u002f3c008581cbbc478ba3ccc5a1f8e51f96", "attributes": { "enabled": true, - "created": 1560804640, - "updated": 1560804640, + "created": 1565114539, + "updated": 1565114539, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/911499493?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f911499493?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|429849e-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dbf575e2ad3eb77b02d989b04a3a1a89", "x-ms-return-client-request-id": "true" @@ -244,24 +291,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:51:25 GMT", + "Date": "Tue, 06 Aug 2019 18:03:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4b78a346-bc66-408e-8d97-a084215b8fa3", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4d66aba7-9e6c-42f9-b370-b37a6338f799", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1103175032" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExisting.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExisting.json index 43209b4e9063..ceb0f8a795ff 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExisting.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExisting.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/104547240/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f104547240\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981bd-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "74244b90543c60c01b781e4698e8413e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4ce7c027-ddc2-4e39-917a-e5adaaf4f246", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f104547240\u002frecover?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981bd-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "74244b90543c60c01b781e4698e8413e", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "75", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:07:57 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6edd636e-67be-45ff-91f6-600fc6285167", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e111c294-01e9-4958-9e60-276edc390d6a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "2111859612" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExistingAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExistingAsync.json index 327d2ec2f748..d75999b55e51 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExistingAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RecoverSecretNonExistingAsync.json @@ -1,15 +1,57 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1166876681/recover?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1166876681\u002frecover?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a0-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "53323136f3b422e5ddde9e630fcbd610", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7a480e6e-2b38-42e9-8b37-2181e4938274", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1166876681\u002frecover?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "53323136f3b422e5ddde9e630fcbd610", "x-ms-return-client-request-id": "true" @@ -19,18 +61,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "76", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 14 Jun 2019 08:08:10 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e81c7fb7-4a19-4a9a-bf0c-a2a2b1d08d3e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5ed19555-8fc9-42ce-8fcd-7b7c9e44db25", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -42,7 +84,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1316478381" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackup.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackup.json index a109cd993ec6..9def4b250392 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackup.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackup.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/restore?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002frestore?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981be-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "c91b9402c1b187c79eac844a649cebb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "40ef7001-8cf0-4015-8d02-8f36c58cdce2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002frestore?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "28", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981be-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c91b9402c1b187c79eac844a649cebb3", "x-ms-return-client-request-id": "true" @@ -22,18 +64,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "78", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dcdc77be-eb12-4443-a7f6-bdb543132e73", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "059decf9-593f-42e3-bd90-4ed54f1f8e42", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -45,7 +87,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1024482324" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackupAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackupAsync.json index 89c5650a7a26..f6c70533366a 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackupAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/RestoreMalformedBackupAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/restore?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002frestore?api-version=7.0", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a1-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "e38b77d04af6b93d677fd0a36f72c7c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "c09abd05-8732-4a09-abcc-913f8cc1de5d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002frestore?api-version=7.0", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "28", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e38b77d04af6b93d677fd0a36f72c7c1", "x-ms-return-client-request-id": "true" @@ -22,18 +64,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "78", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5a130cb0-2c7d-4ed3-bceb-ad34e088541d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "75207e3d-0419-4359-8da8-7fb0abdd1517", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -45,7 +87,7 @@ } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "608767296" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecret.json index d387eae9016d..0e25b4ac7eb1 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/310736355?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981bf-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "cdd135c7a1bde6e9c7600f1c78839a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6bd4eefd-3625-44ae-afe6-dbe5aeca46f9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981bf-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "cdd135c7a1bde6e9c7600f1c78839a75", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e0a01333-eb97-4844-b4a5-17ef905b309d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "3fb20e39-16cf-4966-82d7-2a64469f5738", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/5ecaed7cc708419cbc4d2522f83523e9", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f884429302cb54177860e0523342bfbe2", "attributes": { "enabled": true, - "created": 1560804426, - "updated": 1560804426, + "created": 1565114285, + "updated": 1565114285, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/310736355?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981c0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "885b310d7759b1c50939c13f79ab5206", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:05 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "08fa6737-f59a-4fbf-9ab5-c9bd3913543b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "99e8a485-7b13-40ec-8c6e-639deb79aad1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/0a5b1a897fad4c78a876dbb3a5cb1669", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f47ce427e0fd7490081a8d7de54a223a8", "attributes": { "enabled": true, - "created": 1560804426, - "updated": 1560804426, + "created": 1565114285, + "updated": 1565114285, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/310736355?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981c1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a8623cd146e2d3eb06d956b48867cce7", "x-ms-return-client-request-id": "true" @@ -116,41 +160,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "5247081e-24b8-4230-94c6-aad73b727016", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bad87e81-9585-4b34-91d8-18f2ef6ee333", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/629fb968d76645e6ba81fa9a90c09b1e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f573f78f68e324ca7ba6ae413f49671d0", "attributes": { "enabled": true, - "created": 1560804426, - "updated": 1560804426, + "created": 1565114285, + "updated": 1565114285, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/0a5b1a897fad4c78a876dbb3a5cb1669?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f47ce427e0fd7490081a8d7de54a223a8?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981c2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "4d697e587ccd4f8a6f1fc384dfa96d1b", "x-ms-return-client-request-id": "true" @@ -160,41 +205,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0a4114ec-3775-4977-8891-ae5d24f6e01c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "5d8febc3-719c-486b-88a1-d2015c623cb6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/0a5b1a897fad4c78a876dbb3a5cb1669", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f47ce427e0fd7490081a8d7de54a223a8", "attributes": { "enabled": true, - "created": 1560804426, - "updated": 1560804426, + "created": 1565114285, + "updated": 1565114285, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/310736355?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981c3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3b4a090df121c79245878180211129a2", "x-ms-return-client-request-id": "true" @@ -204,69 +250,70 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:06 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ee0ab7db-ea90-478a-9935-dc95f05b428c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "16ae2b2d-e103-49e2-a8f1-b5e071c35f77", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/310736355", - "deletedDate": 1560804426, - "scheduledPurgeDate": 1568580426, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/310736355/629fb968d76645e6ba81fa9a90c09b1e", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f310736355", + "deletedDate": 1565114285, + "scheduledPurgeDate": 1572890285, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f310736355\u002f573f78f68e324ca7ba6ae413f49671d0", "attributes": { "enabled": true, - "created": 1560804426, - "updated": 1560804426, + "created": 1565114285, + "updated": 1565114285, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/310736355?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f310736355?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981c8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "e6142493a96bdc8514800ea1fcf359a8", + "x-ms-client-request-id": "61cddae3f04ff899619daf2607b7ae1d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:47:15 GMT", + "Date": "Tue, 06 Aug 2019 17:58:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "79d445d1-59a8-498f-a5af-17931fd25218", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8a2253be-ffb1-4f83-83aa-bb12d9371967", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "339621325" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretAsync.json index 683d6467496e..0a848df8f8c9 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/428249963?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a2-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "843c2d361274952bd174f6b597d98240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "8ba36660-cf63-4060-b056-795d63a0720d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "843c2d361274952bd174f6b597d98240", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "f47d019e-c170-4d42-8970-31b024aef26a", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "712d6bc3-688c-40cb-ae13-6ca7d6f0203a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/3f2e284965f644f8987a2bc429676a8a", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002fc656c443220b49c9af6f39afa96e90bc", "attributes": { "enabled": true, - "created": 1560804687, - "updated": 1560804687, + "created": 1565114587, + "updated": 1565114587, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/428249963?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "de2f0505b818591ea8ad0751250b7274", "x-ms-return-client-request-id": "true" @@ -69,42 +112,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "4be75752-96c2-47c5-9eef-2984c0e5e003", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bc4661ac-edcf-47dd-ab38-3abdecada309", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/44b638e7b1684f2a80b1ee5feb795fba", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002f94ed108eed674ac9a5436a2e2df50a42", "attributes": { "enabled": true, - "created": 1560804687, - "updated": 1560804687, + "created": 1565114587, + "updated": 1565114587, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/428249963?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "18", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3c3684d828a2ab2472de303674331e69", "x-ms-return-client-request-id": "true" @@ -116,41 +160,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "126c2ce9-2913-4cfd-a684-e236e69d8c44", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f4b29354-db3a-44bf-8332-17b7b45effaa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value3", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/8f5d55fb682946158eede367d81b9f2f", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002fb0eb2aff95754861a8d2eb28fc8ce0cd", "attributes": { "enabled": true, - "created": 1560804687, - "updated": 1560804687, + "created": 1565114587, + "updated": 1565114587, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/44b638e7b1684f2a80b1ee5feb795fba?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002f94ed108eed674ac9a5436a2e2df50a42?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "a386e96954237e520fe2dcc60ad96fc6", "x-ms-return-client-request-id": "true" @@ -160,41 +205,42 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "33865fed-4c5f-48c5-a375-6a91ad1c208c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0b471911-13e8-4663-bb09-81860b7c5420", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "value2", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/44b638e7b1684f2a80b1ee5feb795fba", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002f94ed108eed674ac9a5436a2e2df50a42", "attributes": { "enabled": true, - "created": 1560804687, - "updated": 1560804687, + "created": 1565114587, + "updated": 1565114587, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/428249963?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984a6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "12dc810245a2dd9de0846c3987e7e574", "x-ms-return-client-request-id": "true" @@ -204,43 +250,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3a857211-be20-4fa5-8ab0-6402cd8096d1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ba2bc00d-791d-4315-b86f-520f5a24366d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/428249963", - "deletedDate": 1560804687, - "scheduledPurgeDate": 1568580687, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/428249963/8f5d55fb682946158eede367d81b9f2f", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f428249963", + "deletedDate": 1565114587, + "scheduledPurgeDate": 1572890587, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f428249963\u002fb0eb2aff95754861a8d2eb28fc8ce0cd", "attributes": { "enabled": true, - "created": 1560804687, - "updated": 1560804687, + "created": 1565114587, + "updated": 1565114587, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/428249963?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f428249963?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984ab-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e4c305c134253ca82800c2fe2bdc0a6e", "x-ms-return-client-request-id": "true" @@ -249,24 +296,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:51:42 GMT", + "Date": "Tue, 06 Aug 2019 18:03:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3ccbebdb-a813-4f39-976c-6587a36bcbec", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0463b1b5-47b9-49fe-8895-99f5d6476a38", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "47720066" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedProps.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedProps.json index 0b6fbec49c3c..9d8299ca433e 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedProps.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedProps.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981ca-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "6e313c4e50b37fd71b2a03970f53cd83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "317e792f-70c9-4fcc-810b-c1b4004b0531", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "160", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981ca-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "6e313c4e50b37fd71b2a03970f53cd83", "x-ms-return-client-request-id": "true" @@ -31,30 +73,30 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "6acfdb29-b140-41f1-89e5-f0762ab358f8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0f45928d-1912-478a-b79c-fb723233bd64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudWithExtendedPropsValue1", "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412/376a8a7bd9dd4086a4b9114c9ecd5a7e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412\u002fc2d12adc8ef047dab96b268a694ea990", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804437, - "updated": 1560804437, + "created": 1565114301, + "updated": 1565114301, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -64,15 +106,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981cb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "57428b1f01fec8a093a268de342c5c21", "x-ms-return-client-request-id": "true" @@ -82,30 +125,30 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2ce78e1a-8b5d-49e4-baaf-6533dd12d2b1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1750a179-8727-4e6c-9802-d5c1a16aa2fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudWithExtendedPropsValue1", "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412/376a8a7bd9dd4086a4b9114c9ecd5a7e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412\u002fc2d12adc8ef047dab96b268a694ea990", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804437, - "updated": 1560804437, + "created": 1565114301, + "updated": 1565114301, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -115,15 +158,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981cc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b4ee367322b33daeb668605433eefb12", "x-ms-return-client-request-id": "true" @@ -133,32 +177,32 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "456", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:17 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "8ab88b39-4019-4801-8b1d-22805759b3ea", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d494461b-b85a-4587-b940-a1b2b637bdec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1518274412", - "deletedDate": 1560804437, - "scheduledPurgeDate": 1568580437, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1518274412", + "deletedDate": 1565114301, + "scheduledPurgeDate": 1572890301, "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1518274412/376a8a7bd9dd4086a4b9114c9ecd5a7e", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1518274412\u002fc2d12adc8ef047dab96b268a694ea990", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804437, - "updated": 1560804437, + "created": 1565114301, + "updated": 1565114301, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -168,15 +212,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1518274412?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1518274412?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d1-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "916934d34e348f844ce011c30185b53e", "x-ms-return-client-request-id": "true" @@ -185,24 +230,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Date": "Tue, 06 Aug 2019 17:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b98ec0d5-cc30-43e7-98e8-a0230dcfa119", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "1a46be50-f223-485e-a720-c5d4a8406776", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1479130513" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedPropsAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedPropsAsync.json index 3826ae5aef26..9a9c73227432 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedPropsAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/SetSecretWithExtendedPropsAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984ad-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "fbe4b61e99a4799601d522111e3c40f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "34f7a81d-5da0-42b5-b45a-9ce8ff88b2bb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "160", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984ad-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "fbe4b61e99a4799601d522111e3c40f8", "x-ms-return-client-request-id": "true" @@ -31,30 +73,30 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a1fece8b-47e7-4493-87ba-49e947e978ba", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "7c13f012-7c89-4b52-ae34-d27644f2a1a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudWithExtendedPropsValue1", "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935/f9ba7f16133e4e819bab477124ccde24", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935\u002f451bdb9ada314902bcef2374b9d44eff", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804702, - "updated": 1560804702, + "created": 1565114603, + "updated": 1565114603, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -64,15 +106,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984ae-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "47771783e5be3d2a7c9233d57a20efbf", "x-ms-return-client-request-id": "true" @@ -82,30 +125,30 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a595d86b-8de5-4b92-a4e7-adb696e7bdbf", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6a813f0b-99c4-4829-8168-3755ddcdeae6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudWithExtendedPropsValue1", "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935/f9ba7f16133e4e819bab477124ccde24", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935\u002f451bdb9ada314902bcef2374b9d44eff", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804702, - "updated": 1560804702, + "created": 1565114603, + "updated": 1565114603, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -115,15 +158,16 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984af-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e875a1e21a0a0d269b57fdbb63aff500", "x-ms-return-client-request-id": "true" @@ -133,32 +177,32 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "456", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:42 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ad55926c-a3b0-49bb-ae40-a5f68d398790", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "83f83fac-db8c-40e7-bf85-e964be2bcf7c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1963134935", - "deletedDate": 1560804703, - "scheduledPurgeDate": 1568580703, + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1963134935", + "deletedDate": 1565114603, + "scheduledPurgeDate": 1572890603, "contentType": "password", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1963134935/f9ba7f16133e4e819bab477124ccde24", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1963134935\u002f451bdb9ada314902bcef2374b9d44eff", "attributes": { "enabled": true, "nbf": 1564536012448, "exp": 1567128012448, - "created": 1560804702, - "updated": 1560804702, + "created": 1565114603, + "updated": 1565114603, "recoveryLevel": "Recoverable\u002bPurgeable" }, "tags": { @@ -168,41 +212,42 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1963134935?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1963134935?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984b5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "00d51c58797f753983276159c5b1501c", + "x-ms-client-request-id": "cc0fd2c1d99a234cf99285693ca3a9d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:51:52 GMT", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e7cae857-3476-4891-82d9-a7b0d10acdcb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d3b81029-b34f-47b2-891e-523bf0c939b2", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "930004994" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabled.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabled.json index 88087ac33526..7dc2fd24c607 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabled.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabled.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/955300954?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d3-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "574a816f213a965766209c4a93d05cbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e1168158-8dd9-4944-8a08-dfcc43f77d02", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "27", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "574a816f213a965766209c4a93d05cbf", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "237", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "b5638824-ca7d-4549-892a-ca25351b4fa8", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4edc24c3-1586-4d57-a0ff-b34dabfdb102", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudBasicValue1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce", "attributes": { "enabled": true, - "created": 1560804453, - "updated": 1560804453, + "created": 1565114317, + "updated": 1565114317, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "58", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3697a055c9e622e6fa588ff2b84e0ba2", "x-ms-return-client-request-id": "true" @@ -72,40 +115,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "212", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ce793c6d-8078-4ef4-a112-a52142ae4acd", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "60c1a3fd-078a-47ff-8a68-0addb733e06d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce", "attributes": { "enabled": false, - "created": 1560804453, - "updated": 1560804453, + "created": 1565114317, + "updated": 1565114317, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "8daf1d0af255ecd8cf39b41cc3ce4f56", "x-ms-return-client-request-id": "true" @@ -115,18 +159,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "132", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6ea9de1-e917-4dd8-ba08-83b96754af4e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "bbc510d5-70b5-453a-93a9-e610d4210f31", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -140,16 +184,17 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "57", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d6-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "dd44e8ddca8da5749b275ce19265dd18", "x-ms-return-client-request-id": "true" @@ -164,40 +209,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "211", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "20247291-1f34-4628-8f02-5150d749835e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "4fe8510f-deb7-4bbb-8f91-20afb6f50fdc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce", "attributes": { "enabled": true, - "created": 1560804453, - "updated": 1560804453, + "created": 1565114317, + "updated": 1565114317, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/955300954?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981d7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "7540fa14ce21626ac8aa66ad14ca5e2b", "x-ms-return-client-request-id": "true" @@ -207,43 +253,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "348", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:47:32 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "ef52ad35-78cd-45d1-a215-ee0595ed5df0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "e25017e8-e95b-413f-9010-69e4ff6ec7db", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/955300954", - "deletedDate": 1560804453, - "scheduledPurgeDate": 1568580453, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/955300954/60b69d66207446a0aacba15fb6bbb097", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f955300954", + "deletedDate": 1565114317, + "scheduledPurgeDate": 1572890317, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f955300954\u002f1b5931b39fd44b77bed79880c5578dce", "attributes": { "enabled": true, - "created": 1560804453, - "updated": 1560804453, + "created": 1565114317, + "updated": 1565114317, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/955300954?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f955300954?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981dc-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "64642179011e4e198e22e38e0e1e3241", "x-ms-return-client-request-id": "true" @@ -252,24 +299,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:47:48 GMT", + "Date": "Tue, 06 Aug 2019 17:58:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "c8e24d07-cd43-4c10-a466-a396ac1b3ce1", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "218df9a1-f025-4a70-baa8-bfeccf774700", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "481290368" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabledAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabledAsync.json index b8bf97410201..eeb4b51c36a7 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabledAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateEnabledAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984b7-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "19ec10f12e778a77fa49003ba07b62fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "cc23eacf-e782-45b5-8ae6-8a7a8a6144b9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "27", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984b7-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "19ec10f12e778a77fa49003ba07b62fc", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "238", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "e2319023-58e6-4e20-94a3-8a03f5bf760e", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "dedbb798-a3ac-4dbd-9fb8-a5ae4dec8ef3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudBasicValue1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317", "attributes": { "enabled": true, - "created": 1560804713, - "updated": 1560804713, + "created": 1565114624, + "updated": 1565114624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "58", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984b8-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "ceef6f177b2552f50ce8e8bb9eff811f", "x-ms-return-client-request-id": "true" @@ -72,40 +115,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "213", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "0c261252-8a55-4cfd-ae82-b6c7a97f593b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "51351dd9-ac03-4656-acf9-26be245203e0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317", "attributes": { "enabled": false, - "created": 1560804713, - "updated": 1560804713, + "created": 1565114624, + "updated": 1565114624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f?api-version=7.0", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984b9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b519b2495cb67b40e3c712cc995850af", "x-ms-return-client-request-id": "true" @@ -115,18 +159,18 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "132", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "40f78ca2-1769-43d0-890d-43bb7385102b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2c22aede-a5d8-4dfe-8ea9-7bfffc022525", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -140,16 +184,17 @@ } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "57", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984ba-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "feaf33501772769f1b990d8e45bcebfa", "x-ms-return-client-request-id": "true" @@ -164,40 +209,41 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "212", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dcd5e22a-0a89-4013-b305-b1442d49e238", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "73d7bac2-b302-4a26-93ac-3301b1fe005a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317", "attributes": { "enabled": true, - "created": 1560804713, - "updated": 1560804714, + "created": 1565114624, + "updated": 1565114624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984bb-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "eef2e0c8ac61bb462e73eb5d6928b9b3", "x-ms-return-client-request-id": "true" @@ -207,43 +253,44 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 Jun 2019 20:51:53 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a2ee24e4-59f7-45cf-812d-193453936efb", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ada5f652-9a1a-44e0-9b75-a71711375d2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1075585220", - "deletedDate": 1560804714, - "scheduledPurgeDate": 1568580714, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1075585220/2922b2b2c13b4af7a926ade2ddde319c", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1075585220", + "deletedDate": 1565114624, + "scheduledPurgeDate": 1572890624, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1075585220\u002f19077dc72df54fccbe6d739a85601317", "attributes": { "enabled": true, - "created": 1560804713, - "updated": 1560804714, + "created": 1565114624, + "updated": 1565114624, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1075585220?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1075585220?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "f53da69629ba5dd56dbe84a6878f90c3", "x-ms-return-client-request-id": "true" @@ -252,24 +299,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 17 Jun 2019 20:52:08 GMT", + "Date": "Tue, 06 Aug 2019 18:03:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a62d9cf1-e91a-44ad-a7b0-acc626f45279", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "0a65d16e-5308-4920-adde-4960b428d1f3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "783925952" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecret.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecret.json index 1a76870bd8e3..3deb2ebd795f 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecret.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecret.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981de-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "1745d72a755e3a5652828e40ed3dcc10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "9e6acca7-86e6-4669-ba59-03326ebe0840", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "27", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981de-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "1745d72a755e3a5652828e40ed3dcc10", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "238", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:26 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "76b68176-8872-4695-92d9-27831100b47b", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "f8c19078-a4e7-464e-875a-40cbb71e38c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudBasicValue1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206/ee23c786cb674fb3b522b93f225a6a14", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206\u002f89bfe4115f194b548e21990705652785", "attributes": { "enabled": true, - "created": 1560877047, - "updated": 1560877047, + "created": 1565114333, + "updated": 1565114333, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206/ee23c786cb674fb3b522b93f225a6a14?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206\u002f89bfe4115f194b548e21990705652785?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "74", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981df-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c087773e0a9078e252e88ce4c8861f46", "x-ms-return-client-request-id": "true" @@ -66,48 +109,49 @@ "value": "CrudBasicValue1", "attributes": { "enabled": true, - "exp": 1560877047 + "exp": 1565114333 } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "9a5602b3-cc12-4771-8097-18e521060aad", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ff39a02c-1862-4101-8c20-c55c3358850b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206/ee23c786cb674fb3b522b93f225a6a14", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206\u002f89bfe4115f194b548e21990705652785", "attributes": { "enabled": true, - "exp": 1560877047, - "created": 1560877047, - "updated": 1560877047, + "exp": 1565114333, + "created": 1565114333, + "updated": 1565114333, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e0-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "b04016abb1559cb6d8a88f3f07c4a3e5", "x-ms-return-client-request-id": "true" @@ -117,70 +161,71 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "367", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:57:27 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 17:58:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "3fa749bc-487a-402c-848b-f3172ab2dc26", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "37208670-fa8b-4960-835d-1f55869e443a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1674149206", - "deletedDate": 1560877047, - "scheduledPurgeDate": 1568653047, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1674149206/ee23c786cb674fb3b522b93f225a6a14", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1674149206", + "deletedDate": 1565114333, + "scheduledPurgeDate": 1572890333, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1674149206\u002f89bfe4115f194b548e21990705652785", "attributes": { "enabled": true, - "exp": 1560877047, - "created": 1560877047, - "updated": 1560877047, + "exp": 1565114333, + "created": 1565114333, + "updated": 1565114333, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1674149206?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1674149206?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42981e5-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], - "x-ms-client-request-id": "bfdcc237cc30a4e8c30208c116dda551", + "x-ms-client-request-id": "4032375c264e0cd6ace787dc5f32a180", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:57:37 GMT", + "Date": "Tue, 06 Aug 2019 17:59:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "d6d9bd44-b997-405b-a3d3-c9dc41c141d0", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "2d6ff148-717a-4a99-9546-694b9abc11cd", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "1755783095" } } \ No newline at end of file diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecretAsync.json b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecretAsync.json index 6cdfc5a35d7e..4bcc86f29c0a 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecretAsync.json +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/tests/SessionRecords/SecretClientLiveTests/UpdateSecretAsync.json @@ -1,16 +1,58 @@ { "Entries": [ { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356?api-version=7.0", "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c2-4c61899ebaa789f5.", + "User-Agent": [ + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" + ], + "x-ms-client-request-id": "3fa5a8a378274d3fdf1d38fea75b793d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "87", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:03:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS\u002f10.0", + "Strict-Transport-Security": "max-age=31536000;includeSubDomains", + "WWW-Authenticate": "Bearer authorization=\u0022https:\u002f\u002flogin.windows.net\u002f72f988bf-86f1-41af-91ab-2d7cd011db47\u0022, resource=\u0022https:\u002f\u002fvault.azure.net\u0022", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "64959e20-0a70-4a31-8be2-81ca79203465", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "Unauthorized", + "message": "Request is missing a Bearer or PoP token." + } + } + }, + { + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356?api-version=7.0", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "27", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c2-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "3fa5a8a378274d3fdf1d38fea75b793d", "x-ms-return-client-request-id": "true" @@ -22,42 +64,43 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "238", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:04:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "2504da84-6c92-4909-8684-36a84a8157be", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "d59bd3f3-4536-4271-a49d-eb9fdd733f85", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": "CrudBasicValue1", - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356/e91f0c3a0f8c46e3a894a2403d9430f5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356\u002f3a32dff94a6f48f29a08ee42bab99de3", "attributes": { "enabled": true, - "created": 1560877106, - "updated": 1560877106, + "created": 1565114640, + "updated": 1565114640, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356/e91f0c3a0f8c46e3a894a2403d9430f5?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356\u002f3a32dff94a6f48f29a08ee42bab99de3?api-version=7.0", "RequestMethod": "PATCH", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", "Content-Length": "74", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c3-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "e8b98ab1f89cdcb5a1d50daadf2b1bbd", "x-ms-return-client-request-id": "true" @@ -66,48 +109,49 @@ "value": "CrudBasicValue1", "attributes": { "enabled": true, - "exp": 1560877106 + "exp": 1565114640 } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "229", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:04:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "dbd12fb8-ae39-4a3b-8d6e-9deef6c3c77d", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "ca21a03f-098e-4b23-892e-db9345ab4c62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356/e91f0c3a0f8c46e3a894a2403d9430f5", + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356\u002f3a32dff94a6f48f29a08ee42bab99de3", "attributes": { "enabled": true, - "exp": 1560877106, - "created": 1560877106, - "updated": 1560877106, + "exp": 1565114640, + "created": 1565114640, + "updated": 1565114640, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c4-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "33df7ae6738a2a22c683ca42f386bc66", "x-ms-return-client-request-id": "true" @@ -117,44 +161,45 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "367", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 18 Jun 2019 16:58:25 GMT", + "Content-Type": "application\u002fjson; charset=utf-8", + "Date": "Tue, 06 Aug 2019 18:04:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "a7767e69-2191-4500-8ce6-0dcbf05fe035", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "6d14ba74-c32b-415f-836d-66cfc2a58519", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "recoveryId": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1014852356", - "deletedDate": 1560877106, - "scheduledPurgeDate": 1568653106, - "id": "https://pakrym-keyvault.vault.azure.net/secrets/1014852356/e91f0c3a0f8c46e3a894a2403d9430f5", + "recoveryId": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1014852356", + "deletedDate": 1565114640, + "scheduledPurgeDate": 1572890640, + "id": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fsecrets\u002f1014852356\u002f3a32dff94a6f48f29a08ee42bab99de3", "attributes": { "enabled": true, - "exp": 1560877106, - "created": 1560877106, - "updated": 1560877106, + "exp": 1565114640, + "created": 1565114640, + "updated": 1565114640, "recoveryLevel": "Recoverable\u002bPurgeable" } } }, { - "RequestUri": "https://pakrym-keyvault.vault.azure.net/deletedsecrets/1014852356?api-version=7.0", + "RequestUri": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002fdeletedsecrets\u002f1014852356?api-version=7.0", "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "application\u002fjson", "Authorization": "Sanitized", - "Content-Type": "application/json", + "Content-Type": "application\u002fjson", + "Request-Id": "|42984c9-4c61899ebaa789f5.", "User-Agent": [ - "azsdk-net-keyvault-secret/1.0.0.0", - "(.NET Core 4.6.27617.04; Microsoft Windows 10.0.18362 )" + "azsdk-net-Security.KeyVault.Secrets\u002f4.0.0-dev.20190806.1\u002b549ac09c0c12d70f945de85b89974088680893d4", + "(.NET Core 4.6.27817.01; Microsoft Windows 10.0.18362 )" ], "x-ms-client-request-id": "c43983e1d369cd6b21eb1a4705f26997", "x-ms-return-client-request-id": "true" @@ -163,24 +208,24 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 18 Jun 2019 16:58:41 GMT", + "Date": "Tue, 06 Aug 2019 18:04:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Server": "Microsoft-IIS\u002f10.0", "Strict-Transport-Security": "max-age=31536000;includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-keyvault-network-info": "addr=131.107.174.199;act_addr_fam=InterNetwork;", + "x-ms-keyvault-network-info": "addr=131.107.160.97;act_addr_fam=InterNetwork;", "x-ms-keyvault-region": "westus", - "x-ms-keyvault-service-version": "1.1.0.866", - "x-ms-request-id": "56e4a3f9-f39a-432e-b9a4-3080aa66378c", + "x-ms-keyvault-service-version": "1.1.0.875", + "x-ms-request-id": "b65517fc-63bd-4f44-8e9b-84f1cc93e220", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": [] } ], "Variables": { - "AZURE_KEYVAULT_URL": "https://pakrym-keyvault.vault.azure.net/", + "AZURE_KEYVAULT_URL": "https:\u002f\u002fdotnettestvault.vault.azure.net\u002f", "RandomSeed": "633319276" } } \ No newline at end of file diff --git a/sdk/keyvault/Shared/ChallengeBasedAuthenticationPolicy.cs b/sdk/keyvault/Shared/ChallengeBasedAuthenticationPolicy.cs new file mode 100644 index 000000000000..18f7bb4e523d --- /dev/null +++ b/sdk/keyvault/Shared/ChallengeBasedAuthenticationPolicy.cs @@ -0,0 +1,263 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using Azure.Core; +using Azure.Core.Http; +using Azure.Core.Pipeline; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace Azure.Security.KeyVault +{ + internal class ChallengeBasedAuthenticationPolicy : HttpPipelinePolicy + { + private const string BearerChallengePrefix = "Bearer "; + private readonly TokenCredential _credential; + + private AuthenticationChallenge _challenge = null; + + private string _headerValue; + + private DateTimeOffset _refreshOn; + + public ChallengeBasedAuthenticationPolicy(TokenCredential credential) + { + _credential = credential; + } + + public override void Process(HttpPipelineMessage message, ReadOnlyMemory pipeline) + { + ProcessCoreAsync(message, pipeline, false).GetAwaiter().GetResult(); + } + + public override Task ProcessAsync(HttpPipelineMessage message, ReadOnlyMemory pipeline) + { + return ProcessCoreAsync(message, pipeline, true); + } + + private async Task ProcessCoreAsync(HttpPipelineMessage message, ReadOnlyMemory pipeline, bool async) + { + HttpPipelineRequestContent originalContent = message.Request.Content; + + // if this policy doesn't have _challenge cached try to get it from the static challenge cache + _challenge ??= AuthenticationChallenge.GetChallenge(message); + + // if we still don't have the challenge for the endpoint + // remove the content from the request and send without authentication to get the challenge + if (_challenge == null) + { + message.Request.Content = null; + } + // otherwise if we already know the challenge authenticate the request + else + { + await AuthenticateRequestAsync(message, async).ConfigureAwait(false); + } + + if (async) + { + await ProcessNextAsync(message, pipeline).ConfigureAwait(false); + } + else + { + ProcessNext(message, pipeline); + } + + // if we get a 401 + if (message.Response.Status == 401) + { + // set the content to the original content in case it was cleared + message.Request.Content = originalContent; + + // update the cached challenge + var challenge = AuthenticationChallenge.GetChallenge(message); + + // if a challenge was returned and it's different from the cached _challenge + if (challenge != null && !challenge.Equals(_challenge)) + { + // update the cached challenge + _challenge = challenge; + + // authenticate the request and resend + await AuthenticateRequestAsync(message, async).ConfigureAwait(false); + + if (async) + { + await ProcessNextAsync(message, pipeline).ConfigureAwait(false); + } + else + { + ProcessNext(message, pipeline); + } + } + } + } + + private async Task AuthenticateRequestAsync(HttpPipelineMessage message, bool async) + { + if (DateTimeOffset.UtcNow >= _refreshOn) + { + AccessToken token = async ? + await _credential.GetTokenAsync(_challenge.Scopes, message.CancellationToken).ConfigureAwait(false) : + _credential.GetToken(_challenge.Scopes, message.CancellationToken); + + _headerValue = "Bearer " + token.Token; + _refreshOn = token.ExpiresOn - TimeSpan.FromMinutes(2); + } + + message.Request.Headers.SetValue(HttpHeader.Names.Authorization, _headerValue); + } + + internal class AuthenticationChallenge + { + private static readonly Dictionary _cache = new Dictionary(); + private static readonly object _cacheLock = new object(); + + private AuthenticationChallenge(string scope) + { + Scopes = new string[] { scope }; + } + + public string[] Scopes { get; private set; } + + public override bool Equals(object obj) + { + if (base.Equals(obj)) + { + return true; + } + + AuthenticationChallenge other = obj as AuthenticationChallenge; + + // This assumes that Scopes is always non-null and of length one. + // This is guaranteed by the way the AuthenticationChallenge cache is constructued. + if(other != null) + { + return string.Equals(this.Scopes[0], other.Scopes[0], StringComparison.OrdinalIgnoreCase); + } + + return false; + } + + public override int GetHashCode() + { + // Currently the hash code is simply the hash of the first scope as this is what is used to determine equality + // This assumes that Scopes is always non-null and of length one. + // This is guaranteed by the way the AuthenticationChallenge cache is constructued. + return this.Scopes[0].GetHashCode(); + } + + public static AuthenticationChallenge GetChallenge(HttpPipelineMessage message) + { + AuthenticationChallenge challenge = null; + + if (message.Response != null) + { + challenge = GetChallengeFromResponse(message.Response); + + // if the challenge is non-null cache it + if (challenge != null) + { + lock(_cacheLock) + { + _cache[GetRequestAuthority(message.Request)] = challenge; + } + } + } + else + { + // try to get the challenge from the cache + lock (_cacheLock) + { + _cache.TryGetValue(GetRequestAuthority(message.Request), out challenge); + } + } + + return challenge; + } + + internal static void ClearCache() + { + // try to get the challenge from the cache + lock (_cacheLock) + { + _cache.Clear(); + } + } + + private static AuthenticationChallenge GetChallengeFromResponse(Response response) + { + AuthenticationChallenge challenge = null; + + if (response.Headers.TryGetValue("WWW-Authenticate", out string challengeValue) && challengeValue.StartsWith(BearerChallengePrefix, StringComparison.OrdinalIgnoreCase)) + { + challenge = ParseBearerChallengeHeaderValue(challengeValue); + } + + return challenge; + } + + private static AuthenticationChallenge ParseBearerChallengeHeaderValue(string challengeValue) + { + AuthenticationChallenge challenge = null; + + // remove the bearer challenge prefix + var trimmedChallenge = challengeValue.Substring(BearerChallengePrefix.Length + 1); + + // Split the trimmed challenge into a set of name=value strings that + // are comma separated. The value fields are expected to be within + // quotation characters that are stripped here. + String[] pairs = trimmedChallenge.Split(new String[] { "," }, StringSplitOptions.RemoveEmptyEntries); + + if (pairs.Length > 0) + { + // Process the name=value string + for (int i = 0; i < pairs.Length; i++) + { + String[] pair = pairs[i].Split('='); + + if (pair.Length == 2) + { + // We have a key and a value, now need to trim and decode + String key = pair[0].Trim().Trim(new char[] { '\"' }); + String value = pair[1].Trim().Trim(new char[] { '\"' }); + + if (!string.IsNullOrEmpty(key)) + { + if (string.Equals(key, "scope", StringComparison.OrdinalIgnoreCase)) + { + challenge = new AuthenticationChallenge(value); + + break; + } + else if (string.Equals(key, "resource", StringComparison.OrdinalIgnoreCase)) + { + challenge = new AuthenticationChallenge(value + "/.default"); + } + } + } + } + } + + return challenge; + } + + private static string GetRequestAuthority(Request request) + { + Uri uri = request.UriBuilder.Uri; + + string authority = uri.Authority; + + if (!authority.Contains(":") && uri.Port > 0) + { + // Append port for complete authority + authority = $"{uri.Authority}:{uri.Port}"; + } + + return authority; + } + } + } +} diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureFileshareProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureFileshareProtectedItem.cs index 94519b0eb2d3..c2c8d85c7c26 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureFileshareProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureFileshareProtectedItem.cs @@ -53,6 +53,16 @@ public AzureFileshareProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the fileshare /// represented by this backup item. /// Backup status of this backup @@ -69,8 +79,8 @@ public AzureFileshareProtectedItem() /// on this backup item. /// Additional information with this backup /// item. - public AzureFileshareProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), AzureFileshareProtectedItemExtendedInfo extendedInfo = default(AzureFileshareProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public AzureFileshareProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), AzureFileshareProtectedItemExtendedInfo extendedInfo = default(AzureFileshareProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; ProtectionStatus = protectionStatus; diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSClassicComputeVMProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSClassicComputeVMProtectedItem.cs index 1ea077f3a29a..bf2f99a60239 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSClassicComputeVMProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSClassicComputeVMProtectedItem.cs @@ -56,6 +56,16 @@ public AzureIaaSClassicComputeVMProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the VM represented by /// this backup item. /// Fully qualified ARM ID of the @@ -78,8 +88,8 @@ public AzureIaaSClassicComputeVMProtectedItem() /// item. /// Additional information for this backup /// item. - public AzureIaaSClassicComputeVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, friendlyName, virtualMachineId, protectionStatus, protectionState, healthStatus, healthDetails, lastBackupStatus, lastBackupTime, protectedItemDataId, extendedInfo) + public AzureIaaSClassicComputeVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate, friendlyName, virtualMachineId, protectionStatus, protectionState, healthStatus, healthDetails, lastBackupStatus, lastBackupTime, protectedItemDataId, extendedInfo) { CustomInit(); } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSComputeVMProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSComputeVMProtectedItem.cs index c4480f4bcfb8..d80bdc2370cc 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSComputeVMProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSComputeVMProtectedItem.cs @@ -56,6 +56,16 @@ public AzureIaaSComputeVMProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the VM represented by /// this backup item. /// Fully qualified ARM ID of the @@ -78,8 +88,8 @@ public AzureIaaSComputeVMProtectedItem() /// item. /// Additional information for this backup /// item. - public AzureIaaSComputeVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, friendlyName, virtualMachineId, protectionStatus, protectionState, healthStatus, healthDetails, lastBackupStatus, lastBackupTime, protectedItemDataId, extendedInfo) + public AzureIaaSComputeVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate, friendlyName, virtualMachineId, protectionStatus, protectionState, healthStatus, healthDetails, lastBackupStatus, lastBackupTime, protectedItemDataId, extendedInfo) { CustomInit(); } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSVMProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSVMProtectedItem.cs index 95879a770199..3337a47f2e91 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSVMProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureIaaSVMProtectedItem.cs @@ -52,6 +52,16 @@ public AzureIaaSVMProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the VM represented by /// this backup item. /// Fully qualified ARM ID of the @@ -74,8 +84,8 @@ public AzureIaaSVMProtectedItem() /// item. /// Additional information for this backup /// item. - public AzureIaaSVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public AzureIaaSVMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string virtualMachineId = default(string), string protectionStatus = default(string), string protectionState = default(string), string healthStatus = default(string), IList healthDetails = default(IList), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), string protectedItemDataId = default(string), AzureIaaSVMProtectedItemExtendedInfo extendedInfo = default(AzureIaaSVMProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; VirtualMachineId = virtualMachineId; diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureSqlProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureSqlProtectedItem.cs index 669052315ed7..85ec7328e3bd 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureSqlProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureSqlProtectedItem.cs @@ -51,6 +51,16 @@ public AzureSqlProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Internal ID of a backup item. /// Used by Azure SQL Backup engine to contact Recovery /// Services. @@ -59,8 +69,8 @@ public AzureSqlProtectedItem() /// 'ProtectionError', 'ProtectionStopped', 'ProtectionPaused' /// Additional information for this backup /// item. - public AzureSqlProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string protectedItemDataId = default(string), string protectionState = default(string), AzureSqlProtectedItemExtendedInfo extendedInfo = default(AzureSqlProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public AzureSqlProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string protectedItemDataId = default(string), string protectionState = default(string), AzureSqlProtectedItemExtendedInfo extendedInfo = default(AzureSqlProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { ProtectedItemDataId = protectedItemDataId; ProtectionState = protectionState; diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadProtectedItem.cs index 478c65683d25..e8052c6c4d48 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadProtectedItem.cs @@ -52,6 +52,16 @@ public AzureVmWorkloadProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the DB represented by /// this backup item. /// Host/Cluster Name for instance or @@ -80,8 +90,8 @@ public AzureVmWorkloadProtectedItem() /// 'IRPending' /// Additional information for this backup /// item. - public AzureVmWorkloadProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public AzureVmWorkloadProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; ServerName = serverName; diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPAseDatabaseProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPAseDatabaseProtectedItem.cs index 576c85be0e43..9b9daea48047 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPAseDatabaseProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPAseDatabaseProtectedItem.cs @@ -54,6 +54,16 @@ public AzureVmWorkloadSAPAseDatabaseProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the DB represented by /// this backup item. /// Host/Cluster Name for instance or @@ -82,8 +92,8 @@ public AzureVmWorkloadSAPAseDatabaseProtectedItem() /// 'IRPending' /// Additional information for this backup /// item. - public AzureVmWorkloadSAPAseDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) + public AzureVmWorkloadSAPAseDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) { CustomInit(); } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPHanaDatabaseProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPHanaDatabaseProtectedItem.cs index bb0f054516c5..2a0487a257ab 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPHanaDatabaseProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSAPHanaDatabaseProtectedItem.cs @@ -54,6 +54,16 @@ public AzureVmWorkloadSAPHanaDatabaseProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the DB represented by /// this backup item. /// Host/Cluster Name for instance or @@ -82,8 +92,8 @@ public AzureVmWorkloadSAPHanaDatabaseProtectedItem() /// 'IRPending' /// Additional information for this backup /// item. - public AzureVmWorkloadSAPHanaDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) + public AzureVmWorkloadSAPHanaDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) { CustomInit(); } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSQLDatabaseProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSQLDatabaseProtectedItem.cs index 4ceed98a1b6a..bae47ebdf55c 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSQLDatabaseProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/AzureVmWorkloadSQLDatabaseProtectedItem.cs @@ -53,6 +53,16 @@ public AzureVmWorkloadSQLDatabaseProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the DB represented by /// this backup item. /// Host/Cluster Name for instance or @@ -81,8 +91,8 @@ public AzureVmWorkloadSQLDatabaseProtectedItem() /// 'IRPending' /// Additional information for this backup /// item. - public AzureVmWorkloadSQLDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) + public AzureVmWorkloadSQLDatabaseProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string serverName = default(string), string parentName = default(string), string parentType = default(string), string protectionStatus = default(string), string protectionState = default(string), string lastBackupStatus = default(string), System.DateTime? lastBackupTime = default(System.DateTime?), ErrorDetail lastBackupErrorDetail = default(ErrorDetail), string protectedItemDataSourceId = default(string), string protectedItemHealthStatus = default(string), AzureVmWorkloadProtectedItemExtendedInfo extendedInfo = default(AzureVmWorkloadProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate, friendlyName, serverName, parentName, parentType, protectionStatus, protectionState, lastBackupStatus, lastBackupTime, lastBackupErrorDetail, protectedItemDataSourceId, protectedItemHealthStatus, extendedInfo) { CustomInit(); } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/DPMProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/DPMProtectedItem.cs index a69008e1668c..f518bb5c876f 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/DPMProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/DPMProtectedItem.cs @@ -50,6 +50,16 @@ public DPMProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the managed /// item /// Backup Management server protecting @@ -58,17 +68,14 @@ public DPMProtectedItem() /// engine. Possible values include: 'Invalid', 'IRPending', /// 'Protected', 'ProtectionError', 'ProtectionStopped', /// 'ProtectionPaused' - /// To check if backup item - /// is scheduled for deferred delete /// Extended info of the backup /// item. - public DPMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string backupEngineName = default(string), string protectionState = default(string), bool? isScheduledForDeferredDelete = default(bool?), DPMProtectedItemExtendedInfo extendedInfo = default(DPMProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public DPMProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string backupEngineName = default(string), string protectionState = default(string), DPMProtectedItemExtendedInfo extendedInfo = default(DPMProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; BackupEngineName = backupEngineName; ProtectionState = protectionState; - IsScheduledForDeferredDelete = isScheduledForDeferredDelete; ExtendedInfo = extendedInfo; CustomInit(); } @@ -98,13 +105,6 @@ public DPMProtectedItem() [JsonProperty(PropertyName = "protectionState")] public string ProtectionState { get; set; } - /// - /// Gets or sets to check if backup item is scheduled for deferred - /// delete - /// - [JsonProperty(PropertyName = "isScheduledForDeferredDelete")] - public bool? IsScheduledForDeferredDelete { get; set; } - /// /// Gets or sets extended info of the backup item. /// diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/GenericProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/GenericProtectedItem.cs index 78fa257eac23..9cdb3cd0e8ac 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/GenericProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/GenericProtectedItem.cs @@ -52,6 +52,16 @@ public GenericProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of the container. /// Indicates consistency of policy object /// and policy applied to this backup item. @@ -63,8 +73,8 @@ public GenericProtectedItem() /// Loosely coupled (type, value) /// associations (example - parent of a protected item) /// Name of this backup item's fabric. - public GenericProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string policyState = default(string), string protectionState = default(string), long? protectedItemId = default(long?), IDictionary sourceAssociations = default(IDictionary), string fabricName = default(string)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public GenericProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string policyState = default(string), string protectionState = default(string), long? protectedItemId = default(long?), IDictionary sourceAssociations = default(IDictionary), string fabricName = default(string)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; PolicyState = policyState; diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/MabFileFolderProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/MabFileFolderProtectedItem.cs index 4a4474a85585..967c1d31130e 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/MabFileFolderProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/MabFileFolderProtectedItem.cs @@ -50,6 +50,16 @@ public MabFileFolderProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state /// Friendly name of this backup /// item. /// Name of the computer associated with @@ -58,20 +68,17 @@ public MabFileFolderProtectedItem() /// operation. /// Protected, ProtectionStopped, /// IRPending or ProtectionError - /// Specifies if the item is - /// scheduled for deferred deletion. /// Sync time for deferred /// deletion. /// Additional information with this backup /// item. - public MabFileFolderProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), string friendlyName = default(string), string computerName = default(string), string lastBackupStatus = default(string), string protectionState = default(string), bool? isScheduledForDeferredDelete = default(bool?), long? deferredDeleteSyncTimeInUTC = default(long?), MabFileFolderProtectedItemExtendedInfo extendedInfo = default(MabFileFolderProtectedItemExtendedInfo)) - : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode) + public MabFileFolderProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?), string friendlyName = default(string), string computerName = default(string), string lastBackupStatus = default(string), string protectionState = default(string), long? deferredDeleteSyncTimeInUTC = default(long?), MabFileFolderProtectedItemExtendedInfo extendedInfo = default(MabFileFolderProtectedItemExtendedInfo)) + : base(backupManagementType, workloadType, containerName, sourceResourceId, policyId, lastRecoveryPoint, backupSetName, createMode, deferredDeleteTimeInUTC, isScheduledForDeferredDelete, deferredDeleteTimeRemaining, isDeferredDeleteScheduleUpcoming, isRehydrate) { FriendlyName = friendlyName; ComputerName = computerName; LastBackupStatus = lastBackupStatus; ProtectionState = protectionState; - IsScheduledForDeferredDelete = isScheduledForDeferredDelete; DeferredDeleteSyncTimeInUTC = deferredDeleteSyncTimeInUTC; ExtendedInfo = extendedInfo; CustomInit(); @@ -107,13 +114,6 @@ public MabFileFolderProtectedItem() [JsonProperty(PropertyName = "protectionState")] public string ProtectionState { get; set; } - /// - /// Gets or sets specifies if the item is scheduled for deferred - /// deletion. - /// - [JsonProperty(PropertyName = "isScheduledForDeferredDelete")] - public bool? IsScheduledForDeferredDelete { get; set; } - /// /// Gets or sets sync time for deferred deletion. /// diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/ProtectedItem.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/ProtectedItem.cs index f469e6301a66..bd023668cfee 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/ProtectedItem.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/Models/ProtectedItem.cs @@ -50,7 +50,17 @@ public ProtectedItem() /// Create mode to indicate recovery of /// existing soft deleted data source or creation of new data source. /// Possible values include: 'Invalid', 'Default', 'Recover' - public ProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string)) + /// Time for deferred deletion in + /// UTC + /// Flag to identify whether + /// the DS is scheduled for deferred delete + /// Time remaining before the + /// DS marked for deferred delete is permanently deleted + /// Flag to identify + /// whether the deferred deleted DS is to be purged soon + /// Flag to identify that deferred deleted DS + /// is to be moved into Pause state + public ProtectedItem(string backupManagementType = default(string), string workloadType = default(string), string containerName = default(string), string sourceResourceId = default(string), string policyId = default(string), System.DateTime? lastRecoveryPoint = default(System.DateTime?), string backupSetName = default(string), string createMode = default(string), System.DateTime? deferredDeleteTimeInUTC = default(System.DateTime?), bool? isScheduledForDeferredDelete = default(bool?), string deferredDeleteTimeRemaining = default(string), bool? isDeferredDeleteScheduleUpcoming = default(bool?), bool? isRehydrate = default(bool?)) { BackupManagementType = backupManagementType; WorkloadType = workloadType; @@ -60,6 +70,11 @@ public ProtectedItem() LastRecoveryPoint = lastRecoveryPoint; BackupSetName = backupSetName; CreateMode = createMode; + DeferredDeleteTimeInUTC = deferredDeleteTimeInUTC; + IsScheduledForDeferredDelete = isScheduledForDeferredDelete; + DeferredDeleteTimeRemaining = deferredDeleteTimeRemaining; + IsDeferredDeleteScheduleUpcoming = isDeferredDeleteScheduleUpcoming; + IsRehydrate = isRehydrate; CustomInit(); } @@ -127,5 +142,39 @@ public ProtectedItem() [JsonProperty(PropertyName = "createMode")] public string CreateMode { get; set; } + /// + /// Gets or sets time for deferred deletion in UTC + /// + [JsonProperty(PropertyName = "deferredDeleteTimeInUTC")] + public System.DateTime? DeferredDeleteTimeInUTC { get; set; } + + /// + /// Gets or sets flag to identify whether the DS is scheduled for + /// deferred delete + /// + [JsonProperty(PropertyName = "isScheduledForDeferredDelete")] + public bool? IsScheduledForDeferredDelete { get; set; } + + /// + /// Gets or sets time remaining before the DS marked for deferred + /// delete is permanently deleted + /// + [JsonProperty(PropertyName = "deferredDeleteTimeRemaining")] + public string DeferredDeleteTimeRemaining { get; set; } + + /// + /// Gets or sets flag to identify whether the deferred deleted DS is to + /// be purged soon + /// + [JsonProperty(PropertyName = "IsDeferredDeleteScheduleUpcoming")] + public bool? IsDeferredDeleteScheduleUpcoming { get; set; } + + /// + /// Gets or sets flag to identify that deferred deleted DS is to be + /// moved into Pause state + /// + [JsonProperty(PropertyName = "isRehydrate")] + public bool? IsRehydrate { get; set; } + } } diff --git a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/SdkInfo_RecoveryServicesBackupClient.cs b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/SdkInfo_RecoveryServicesBackupClient.cs index 78e58c8b24c9..f2773abea140 100644 --- a/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/SdkInfo_RecoveryServicesBackupClient.cs +++ b/sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup/src/Generated/SdkInfo_RecoveryServicesBackupClient.cs @@ -60,16 +60,5 @@ public static IEnumerable> ApiInfo_RecoveryService }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "latest"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/recoveryservicesbackup/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\\myclones\\azure-sdk-for-net\\src\\SDKs"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "279463bd1349946a31719cbe799fc394e6003531"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props b/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props index 31d20d0e6d91..4368520001a4 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props +++ b/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props @@ -1,7 +1,7 @@  - Features_2015-12-01;ManagementLinkClient_2016-09-01;Resources_2016-09-01;Authorization_2016-09-01;Authorization_2018-05-01;Management_2018-05-01;PolicyClient_2018-05-01;Management_2019-05-01;ResourceManagementClient_2019-05-01;Resources_2019-05-01;SubscriptionClient_2016-06-01; + Features_2015-12-01;ManagementLinkClient_2016-09-01;Resources_2016-09-01;Authorization_2016-09-01;Authorization_2018-05-01;Management_2018-05-01;PolicyClient_2018-05-01;Management_2019-07-01;ResourceManagementClient_2019-07-01;Resources_2019-07-01;SubscriptionClient_2016-06-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs index 2efa87c56a09..452cf9680121 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs @@ -53,8 +53,8 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// Gets a deployments operation. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -83,22 +83,11 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtScopeWithHttpMessagesAsync(string scope, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -134,16 +123,16 @@ internal DeploymentOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); List _queryParameters = new List(); @@ -279,8 +268,8 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// Gets all deployments operations for a deployment. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -309,22 +298,11 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtScopeWithHttpMessagesAsync(string scope, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) + if (scope == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) - { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -356,16 +334,16 @@ internal DeploymentOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (top != null) @@ -531,7 +509,7 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtTenantScopeWithHttpMessagesAsync(string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -560,10 +538,6 @@ internal DeploymentOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -574,14 +548,13 @@ internal DeploymentOperations(ResourceManagementClient client) tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -742,7 +715,7 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtTenantScopeWithHttpMessagesAsync(string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -767,10 +740,6 @@ internal DeploymentOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -781,13 +750,12 @@ internal DeploymentOperations(ResourceManagementClient client) tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (top != null) { @@ -925,8 +893,8 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// Gets a deployments operation. /// - /// - /// The name of the resource group. The name is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -955,25 +923,21 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -1003,10 +967,6 @@ internal DeploymentOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1014,19 +974,18 @@ internal DeploymentOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1160,8 +1119,8 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// Gets all deployments operations for a deployment. /// - /// - /// The name of the resource group. The name is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -1190,25 +1149,21 @@ internal DeploymentOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -1234,10 +1189,6 @@ internal DeploymentOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1245,18 +1196,17 @@ internal DeploymentOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (top != null) { @@ -1391,6 +1341,1242 @@ internal DeploymentOperations(ResourceManagementClient client) return _result; } + /// + /// Gets a deployments operation. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// 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> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("GET"); + _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; + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// 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>> ListAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + 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("GET"); + _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; + } + + /// + /// Gets a deployments operation. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("GET"); + _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; + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + 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("GET"); + _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; + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + } + /// /// Gets all deployments operations for a deployment. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs index 4063313643e0..d3dc9398f3f9 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs @@ -21,6 +21,178 @@ namespace Microsoft.Azure.Management.ResourceManager /// public static partial class DeploymentOperationsExtensions { + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + public static DeploymentOperation GetAtScope(this IDeploymentOperations operations, string scope, string deploymentName, string operationId) + { + return operations.GetAtScopeAsync(scope, deploymentName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtScopeAsync(this IDeploymentOperations operations, string scope, string deploymentName, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtScopeWithHttpMessagesAsync(scope, deploymentName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + public static IPage ListAtScope(this IDeploymentOperations operations, string scope, string deploymentName, int? top = default(int?)) + { + return operations.ListAtScopeAsync(scope, deploymentName, top).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtScopeAsync(this IDeploymentOperations operations, string scope, string deploymentName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtScopeWithHttpMessagesAsync(scope, deploymentName, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + public static DeploymentOperation GetAtTenantScope(this IDeploymentOperations operations, string deploymentName, string operationId) + { + return operations.GetAtTenantScopeAsync(deploymentName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtTenantScopeAsync(this IDeploymentOperations operations, string deploymentName, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtTenantScopeWithHttpMessagesAsync(deploymentName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + public static IPage ListAtTenantScope(this IDeploymentOperations operations, string deploymentName, int? top = default(int?)) + { + return operations.ListAtTenantScopeAsync(deploymentName, top).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtTenantScopeAsync(this IDeploymentOperations operations, string deploymentName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeWithHttpMessagesAsync(deploymentName, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets a deployments operation. /// @@ -285,6 +457,74 @@ public static DeploymentOperation Get(this IDeploymentOperations operations, str } } + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtScopeNext(this IDeploymentOperations operations, string nextPageLink) + { + return operations.ListAtScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtScopeNextAsync(this IDeploymentOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtTenantScopeNext(this IDeploymentOperations operations, string nextPageLink) + { + return operations.ListAtTenantScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtTenantScopeNextAsync(this IDeploymentOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets all deployments operations for a deployment. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs index a3bb5b962fce..4d1560179cb8 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs @@ -65,8 +65,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// status of 204 on success. If the asynchronous request failed, the URI in /// the Location header returns an error-level status code. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -77,18 +77,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task DeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteAtScopeWithHttpMessagesAsync(scope, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Checks whether the deployment exists. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -111,22 +111,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -158,15 +147,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -231,7 +220,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -266,10 +255,9 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -282,14 +270,14 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources at management group scope. + /// Deploys resources at a given scope. /// /// /// You can provide the template and parameters directly in the request or link /// to JSON files. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -303,18 +291,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task> CreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateOrUpdateAtScopeWithHttpMessagesAsync(scope, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Gets a deployment. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -340,22 +328,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -387,15 +364,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -536,8 +513,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Canceled. Canceling a template deployment stops the currently running /// template deployment and leaves the resources partially deployed. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -560,22 +537,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -607,15 +573,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CancelAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -733,8 +699,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Validates whether the specified template is syntactically correct and will /// be accepted by Azure Resource Manager.. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -763,22 +729,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ValidateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -818,16 +773,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ValidateAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -898,7 +853,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 400) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -958,24 +913,6 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 400) - { - _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); @@ -986,8 +923,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// Exports the template used for specified deployment. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// The name of the deployment. @@ -1013,22 +950,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ExportTemplateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) + if (scope == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) - { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (deploymentName == null) { @@ -1060,15 +986,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -1201,10 +1127,10 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Get all the deployments for a management group. + /// Get all the deployments at the given scope. /// - /// - /// The management group ID. + /// + /// The scope of a deployment. /// /// /// OData parameters to apply to the operation. @@ -1230,22 +1156,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtScopeWithHttpMessagesAsync(string scope, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) + if (scope == null) { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); } if (Client.ApiVersion == null) { @@ -1259,14 +1174,14 @@ internal DeploymentsOperations(ResourceManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("groupId", groupId); + tracingParameters.Add("scope", scope); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); List _queryParameters = new List(); if (odataQuery != null) { @@ -1428,10 +1343,10 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task DeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteAtTenantScopeWithHttpMessagesAsync(deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -1459,7 +1374,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -1484,10 +1399,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,13 +1408,12 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1567,7 +1477,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1602,10 +1512,9 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -1618,7 +1527,7 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources at subscription scope. + /// Deploys resources at tenant scope. /// /// /// You can provide the template and parameters directly in the request or link @@ -1636,10 +1545,10 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task> CreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateOrUpdateAtTenantScopeWithHttpMessagesAsync(deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -1670,7 +1579,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -1695,10 +1604,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1708,13 +1613,12 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1875,7 +1779,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -1900,10 +1804,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1913,13 +1813,12 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CancelAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -2063,7 +1962,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ValidateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -2096,10 +1995,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2110,13 +2005,12 @@ internal DeploymentsOperations(ResourceManagementClient client) tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ValidateAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -2186,7 +2080,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 400) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2246,24 +2140,6 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 400) - { - _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); @@ -2298,7 +2174,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ExportTemplateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -2323,10 +2199,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2336,13 +2208,12 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -2474,7 +2345,7 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Get all the deployments for a subscription. + /// Get all the deployments at the tenant scope. /// /// /// OData parameters to apply to the operation. @@ -2500,16 +2371,12 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAtSubscriptionScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtTenantScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2519,12 +2386,11 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/").ToString(); List _queryParameters = new List(); if (odataQuery != null) { @@ -2668,19 +2534,17 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// /// A template deployment that is currently running cannot be deleted. Deleting - /// a template deployment removes the associated deployment operations. - /// Deleting a template deployment does not affect the state of the resource - /// group. This is an asynchronous operation that returns a status of 202 until - /// the template deployment is successfully deleted. The Location response - /// header contains the URI that is used to obtain the status of the process. - /// While the process is running, a call to the URI in the Location header - /// returns a status of 202. When the process finishes, the URI in the Location - /// header returns a status of 204 on success. If the asynchronous request - /// failed, the URI in the Location header returns an error-level status code. + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. /// - /// - /// The name of the resource group with the deployment to delete. The name is - /// case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -2691,19 +2555,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Checks whether the deployment exists. /// - /// - /// The name of the resource group with the deployment to check. The name is - /// case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -2726,25 +2589,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -2770,10 +2629,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2781,17 +2636,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckExistence", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtManagementGroupScope", 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.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -2855,7 +2709,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2890,10 +2744,9 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -2906,15 +2759,14 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources to a resource group. + /// Deploys resources at management group scope. /// /// /// You can provide the template and parameters directly in the request or link /// to JSON files. /// - /// - /// The name of the resource group to deploy the resources to. The name is case - /// insensitive. The resource group must already exist. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -2928,18 +2780,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Gets a deployment. /// - /// - /// The name of the resource group. The name is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -2965,25 +2817,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -3009,10 +2857,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3020,17 +2864,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", 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.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -3168,10 +3011,10 @@ internal DeploymentsOperations(ResourceManagementClient client) /// You can cancel a deployment only if the provisioningState is Accepted or /// Running. After the deployment is canceled, the provisioningState is set to /// Canceled. Canceling a template deployment stops the currently running - /// template deployment and leaves the resource group partially deployed. + /// template deployment and leaves the resources partially deployed. /// - /// - /// The name of the resource group. The name is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -3194,25 +3037,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -3238,10 +3077,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3249,17 +3084,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtManagementGroupScope", 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.Resources/deployments/{deploymentName}/cancel").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -3376,9 +3210,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Validates whether the specified template is syntactically correct and will /// be accepted by Azure Resource Manager.. /// - /// - /// The name of the resource group the template will be deployed to. The name - /// is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -3407,25 +3240,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ValidateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -3459,10 +3288,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3470,18 +3295,17 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Validate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtManagementGroupScope", 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.Resources/deployments/{deploymentName}/validate").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -3551,7 +3375,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 400) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3611,24 +3435,6 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 400) - { - _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); @@ -3639,8 +3445,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// Exports the template used for specified deployment. /// - /// - /// The name of the resource group. The name is case insensitive. + /// + /// The management group ID. /// /// /// The name of the deployment. @@ -3666,25 +3472,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ExportTemplateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (deploymentName == null) @@ -3710,10 +3512,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3721,17 +3519,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExportTemplate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtManagementGroupScope", 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.Resources/deployments/{deploymentName}/exportTemplate").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -3863,11 +3660,10 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Get all the deployments for a resource group. + /// Get all the deployments for a management group. /// - /// - /// The name of the resource group with the deployments to get. The name is - /// case insensitive. + /// + /// The management group ID. /// /// /// OData parameters to apply to the operation. @@ -3893,35 +3689,27 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (resourceGroupName != null) + if (groupId != null) { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) + if (groupId.Length > 90) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (groupId.Length < 1) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); } } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3930,15 +3718,14 @@ internal DeploymentsOperations(ResourceManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", 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.Resources/deployments/").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); List _queryParameters = new List(); if (odataQuery != null) { @@ -4091,19 +3878,35 @@ internal DeploymentsOperations(ResourceManagementClient client) /// status of 204 on success. If the asynchronous request failed, the URI in /// the Location header returns an error-level status code. /// - /// - /// The management group ID. - /// /// /// The name of the deployment. /// /// - /// Headers that will be added to request. + /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + public async Task DeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -4115,23 +3918,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) - { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -4155,6 +3943,10 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4162,16 +3954,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -4184,7 +3975,7 @@ internal DeploymentsOperations(ResourceManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("HEAD"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4227,7 +4018,7 @@ internal DeploymentsOperations(ResourceManagementClient client) ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); @@ -4235,7 +4026,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4285,15 +4076,12 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources at management group scope. + /// Deploys resources at subscription scope. /// /// /// You can provide the template and parameters directly in the request or link /// to JSON files. /// - /// - /// The management group ID. - /// /// /// The name of the deployment. /// @@ -4301,6 +4089,25 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Additional parameters supplied to the operation. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a deployment. + /// + /// + /// The name of the deployment. + /// + /// /// Headers that will be added to request. /// /// @@ -4321,23 +4128,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (groupId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); - } - if (groupId != null) - { - if (groupId.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); - } - if (groupId.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "groupId", 1); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -4357,18 +4149,14 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4376,17 +4164,15 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtManagementGroupScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -4399,7 +4185,7 @@ internal DeploymentsOperations(ResourceManagementClient 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) @@ -4430,12 +4216,6 @@ internal DeploymentsOperations(ResourceManagementClient 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) { @@ -4456,7 +4236,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4516,24 +4296,6 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 201) - { - _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); @@ -4542,18 +4304,13 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deletes a deployment from the deployment history. + /// Cancels a currently running template deployment. /// /// - /// A template deployment that is currently running cannot be deleted. Deleting - /// a template deployment removes the associated deployment operations. This is - /// an asynchronous operation that returns a status of 202 until the template - /// deployment is successfully deleted. The Location response header contains - /// the URI that is used to obtain the status of the process. While the process - /// is running, a call to the URI in the Location header returns a status of - /// 202. When the process finishes, the URI in the Location header returns a - /// status of 204 on success. If the asynchronous request failed, the URI in - /// the Location header returns an error-level status code. + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. /// /// /// The name of the deployment. @@ -4576,7 +4333,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -4614,11 +4371,11 @@ internal DeploymentsOperations(ResourceManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -4633,7 +4390,7 @@ internal DeploymentsOperations(ResourceManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4684,7 +4441,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4734,17 +4491,14 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources at subscription scope. + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. /// - /// - /// You can provide the template and parameters directly in the request or link - /// to JSON files. - /// /// /// The name of the deployment. /// /// - /// Additional parameters supplied to the operation. + /// Parameters to validate. /// /// /// Headers that will be added to request. @@ -4767,7 +4521,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (deploymentName == null) { @@ -4814,11 +4568,11 @@ internal DeploymentsOperations(ResourceManagementClient client) tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -4833,7 +4587,7 @@ internal DeploymentsOperations(ResourceManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -4890,7 +4644,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4925,7 +4679,7 @@ internal DeploymentsOperations(ResourceManagementClient 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")) @@ -4938,25 +4692,7 @@ internal DeploymentsOperations(ResourceManagementClient client) _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); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _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) { @@ -4976,24 +4712,8 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deletes a deployment from the deployment history. + /// Exports the template used for specified deployment. /// - /// - /// A template deployment that is currently running cannot be deleted. Deleting - /// a template deployment removes the associated deployment operations. - /// Deleting a template deployment does not affect the state of the resource - /// group. This is an asynchronous operation that returns a status of 202 until - /// the template deployment is successfully deleted. The Location response - /// header contains the URI that is used to obtain the status of the process. - /// While the process is running, a call to the URI in the Location header - /// returns a status of 202. When the process finishes, the URI in the Location - /// header returns a status of 204 on success. If the asynchronous request - /// failed, the URI in the Location header returns an error-level status code. - /// - /// - /// The name of the resource group with the deployment to delete. The name is - /// case insensitive. - /// /// /// The name of the deployment. /// @@ -5006,6 +4726,9 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -5015,27 +4738,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -5070,15 +4774,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtSubscriptionScope", 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.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -5093,7 +4795,7 @@ internal DeploymentsOperations(ResourceManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -5144,7 +4846,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -5179,13 +4881,31 @@ internal DeploymentsOperations(ResourceManagementClient 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")) { _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); @@ -5194,21 +4914,10 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources to a resource group. + /// Get all the deployments for a subscription. /// - /// - /// You can provide the template and parameters directly in the request or link - /// to JSON files. - /// - /// - /// The name of the resource group to deploy the resources to. The name is case - /// insensitive. The resource group must already exist. - /// - /// - /// The name of the deployment. - /// - /// - /// Additional parameters supplied to the operation. + /// + /// OData parameters to apply to the operation. /// /// /// Headers that will be added to request. @@ -5231,54 +4940,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtSubscriptionScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (deploymentName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); - } - if (deploymentName != null) - { - if (deploymentName.Length > 64) - { - throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); - } - if (deploymentName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -5294,19 +4957,23 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("deploymentName", deploymentName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", 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.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -5318,7 +4985,7 @@ internal DeploymentsOperations(ResourceManagementClient 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) @@ -5349,12 +5016,6 @@ internal DeploymentsOperations(ResourceManagementClient 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) { @@ -5375,7 +5036,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -5410,7 +5071,7 @@ internal DeploymentsOperations(ResourceManagementClient 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")) @@ -5423,7 +5084,7 @@ internal DeploymentsOperations(ResourceManagementClient 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) { @@ -5435,13 +5096,3985 @@ internal DeploymentsOperations(ResourceManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 201) + if (_shouldTrace) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. + /// Deleting a template deployment does not affect the state of the resource + /// group. This is an asynchronous operation that returns a status of 202 until + /// the template deployment is successfully deleted. The Location response + /// header contains the URI that is used to obtain the status of the process. + /// While the process is running, a call to the URI in the Location header + /// returns a status of 202. When the process finishes, the URI in the Location + /// header returns a status of 204 on success. If the asynchronous request + /// failed, the URI in the Location header returns an error-level status code. + /// + /// + /// The name of the resource group with the deployment to delete. The name is + /// case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The name of the resource group with the deployment to check. The name is + /// case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistence", 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.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("HEAD"); + _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, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources to a resource group. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The name of the resource group to deploy the resources to. The name is case + /// insensitive. The resource group must already exist. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a deployment. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", 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.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("GET"); + _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; + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resource group partially deployed. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 CancelWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Cancel", 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.Resources/deployments/{deploymentName}/cancel").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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 != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The name of the resource group the template will be deployed to. The name + /// is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// 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> ValidateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Validate", 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.Resources/deployments/{deploymentName}/validate").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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; + 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) + { + 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; + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> ExportTemplateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplate", 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.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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; + } + + /// + /// Get all the deployments for a resource group. + /// + /// + /// The name of the resource group with the deployments to get. The name is + /// case insensitive. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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.Resources/deployments/").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + 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("GET"); + _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; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (scope == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("scope", scope); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("DELETE"); + _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 != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (scope == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("scope", scope); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtTenantScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("DELETE"); + _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 != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtTenantScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtManagementGroupScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("DELETE"); + _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 != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtManagementGroupScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + 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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtSubscriptionScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("DELETE"); + _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 != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources at subscription scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtSubscriptionScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. + /// Deleting a template deployment does not affect the state of the resource + /// group. This is an asynchronous operation that returns a status of 202 until + /// the template deployment is successfully deleted. The Location response + /// header contains the URI that is used to obtain the status of the process. + /// While the process is running, a call to the URI in the Location header + /// returns a status of 202. When the process finishes, the URI in the Location + /// header returns a status of 204 on success. If the asynchronous request + /// failed, the URI in the Location header returns an error-level status code. + /// + /// + /// The name of the resource group with the deployment to delete. The name is + /// case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("DELETE"); + _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 != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources to a resource group. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The name of the resource group to deploy the resources to. The name is case + /// insensitive. The resource group must already exist. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + 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.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + 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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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; + } + + /// + /// Get all the deployments at the given scope. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + } + + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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) { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs index 3c9b17d84fd9..05b63fe1c938 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs @@ -22,6 +22,692 @@ namespace Microsoft.Azure.Management.ResourceManager /// public static partial class DeploymentsOperationsExtensions { + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static void DeleteAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + operations.DeleteAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static void CheckExistenceAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + operations.CheckExistenceAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CheckExistenceAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CheckExistenceAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended CreateOrUpdateAtScope(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters) + { + return operations.CreateOrUpdateAtScopeAsync(scope, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAtScopeWithHttpMessagesAsync(scope, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExtended GetAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + return operations.GetAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static void CancelAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + operations.CancelAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CancelAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CancelAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + public static DeploymentValidateResult ValidateAtScope(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters) + { + return operations.ValidateAtScopeAsync(scope, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// The cancellation token. + /// + public static async Task ValidateAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ValidateAtScopeWithHttpMessagesAsync(scope, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExportResult ExportTemplateAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + return operations.ExportTemplateAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task ExportTemplateAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ExportTemplateAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all the deployments at the given scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListAtScope(this IDeploymentsOperations operations, string scope, ODataQuery odataQuery = default(ODataQuery)) + { + return operations.ListAtScopeAsync(scope, odataQuery).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments at the given scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtScopeAsync(this IDeploymentsOperations operations, string scope, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtScopeWithHttpMessagesAsync(scope, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static void DeleteAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + operations.DeleteAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static void CheckExistenceAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + operations.CheckExistenceAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CheckExistenceAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CheckExistenceAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended CreateOrUpdateAtTenantScope(this IDeploymentsOperations operations, string deploymentName, Deployment parameters) + { + return operations.CreateOrUpdateAtTenantScopeAsync(deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAtTenantScopeWithHttpMessagesAsync(deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExtended GetAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + return operations.GetAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static void CancelAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + operations.CancelAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CancelAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CancelAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + public static DeploymentValidateResult ValidateAtTenantScope(this IDeploymentsOperations operations, string deploymentName, Deployment parameters) + { + return operations.ValidateAtTenantScopeAsync(deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// The cancellation token. + /// + public static async Task ValidateAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ValidateAtTenantScopeWithHttpMessagesAsync(deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExportResult ExportTemplateAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + return operations.ExportTemplateAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task ExportTemplateAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ExportTemplateAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListAtTenantScope(this IDeploymentsOperations operations, ODataQuery odataQuery = default(ODataQuery)) + { + return operations.ListAtTenantScopeAsync(odataQuery).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtTenantScopeAsync(this IDeploymentsOperations operations, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeWithHttpMessagesAsync(odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes a deployment from the deployment history. /// @@ -93,9 +779,9 @@ public static void DeleteAtManagementGroupScope(this IDeploymentsOperations oper /// /// The name of the deployment. /// - public static bool CheckExistenceAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + public static void CheckExistenceAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) { - return operations.CheckExistenceAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + operations.CheckExistenceAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); } /// @@ -113,12 +799,9 @@ public static bool CheckExistenceAtManagementGroupScope(this IDeploymentsOperati /// /// The cancellation token. /// - public static async Task CheckExistenceAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -454,9 +1137,9 @@ public static void DeleteAtSubscriptionScope(this IDeploymentsOperations operati /// /// The name of the deployment. /// - public static bool CheckExistenceAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) + public static void CheckExistenceAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { - return operations.CheckExistenceAtSubscriptionScopeAsync(deploymentName).GetAwaiter().GetResult(); + operations.CheckExistenceAtSubscriptionScopeAsync(deploymentName).GetAwaiter().GetResult(); } /// @@ -471,12 +1154,9 @@ public static bool CheckExistenceAtSubscriptionScope(this IDeploymentsOperations /// /// The cancellation token. /// - public static async Task CheckExistenceAtSubscriptionScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceAtSubscriptionScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -790,9 +1470,9 @@ public static void Delete(this IDeploymentsOperations operations, string resourc /// /// The name of the deployment. /// - public static bool CheckExistence(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) + public static void CheckExistence(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { - return operations.CheckExistenceAsync(resourceGroupName, deploymentName).GetAwaiter().GetResult(); + operations.CheckExistenceAsync(resourceGroupName, deploymentName).GetAwaiter().GetResult(); } /// @@ -811,12 +1491,9 @@ public static bool CheckExistence(this IDeploymentsOperations operations, string /// /// The cancellation token. /// - public static async Task CheckExistenceAsync(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceAsync(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, deploymentName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1096,6 +1773,220 @@ public static DeploymentExportResult ExportTemplate(this IDeploymentsOperations } } + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + public static void BeginDeleteAtScope(this IDeploymentsOperations operations, string scope, string deploymentName) + { + operations.BeginDeleteAtScopeAsync(scope, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteAtScopeWithHttpMessagesAsync(scope, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended BeginCreateOrUpdateAtScope(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters) + { + return operations.BeginCreateOrUpdateAtScopeAsync(scope, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAtScopeAsync(this IDeploymentsOperations operations, string scope, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateAtScopeWithHttpMessagesAsync(scope, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + public static void BeginDeleteAtTenantScope(this IDeploymentsOperations operations, string deploymentName) + { + operations.BeginDeleteAtTenantScopeAsync(deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteAtTenantScopeWithHttpMessagesAsync(deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended BeginCreateOrUpdateAtTenantScope(this IDeploymentsOperations operations, string deploymentName, Deployment parameters) + { + return operations.BeginCreateOrUpdateAtTenantScopeAsync(deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAtTenantScopeAsync(this IDeploymentsOperations operations, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateAtTenantScopeWithHttpMessagesAsync(deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes a deployment from the deployment history. /// @@ -1429,6 +2320,74 @@ public static DeploymentExtended BeginCreateOrUpdate(this IDeploymentsOperations } } + /// + /// Get all the deployments at the given scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtScopeNext(this IDeploymentsOperations operations, string nextPageLink) + { + return operations.ListAtScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments at the given scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtScopeNextAsync(this IDeploymentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtTenantScopeNext(this IDeploymentsOperations operations, string nextPageLink) + { + return operations.ListAtTenantScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtTenantScopeNextAsync(this IDeploymentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Get all the deployments for a management group. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs index 4d99b073dd53..1ef109d1ed63 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs @@ -23,6 +23,112 @@ namespace Microsoft.Azure.Management.ResourceManager /// public partial interface IDeploymentOperations { + /// + /// Gets a deployments operation. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// 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> GetAtScopeWithHttpMessagesAsync(string scope, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// 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>> ListAtScopeWithHttpMessagesAsync(string scope, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a deployments operation. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// 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> GetAtTenantScopeWithHttpMessagesAsync(string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// 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>> ListAtTenantScopeWithHttpMessagesAsync(string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a deployments operation. /// @@ -206,6 +312,50 @@ public partial interface IDeploymentOperations /// /// Thrown when a required parameter is null /// + Task>> ListAtScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtManagementGroupScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all deployments operations for a deployment. diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs index a833a4c63447..9903fa4f75bc 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs @@ -24,6 +24,424 @@ namespace Microsoft.Azure.Management.ResourceManager /// public partial interface IDeploymentsOperations { + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Checks whether the deployment exists. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CheckExistenceAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> CreateOrUpdateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a deployment. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> GetAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is + /// Accepted or Running. After the deployment is canceled, the + /// provisioningState is set to Canceled. Canceling a template + /// deployment stops the currently running template deployment and + /// leaves the resources partially deployed. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CancelAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Validates whether the specified template is syntactically correct + /// and will be accepted by Azure Resource Manager.. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// 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> ValidateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports the template used for specified deployment. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> ExportTemplateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all the deployments at the given scope. + /// + /// + /// The scope of a deployment. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// 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>> ListAtScopeWithHttpMessagesAsync(string scope, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Checks whether the deployment exists. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CheckExistenceAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> CreateOrUpdateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> GetAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is + /// Accepted or Running. After the deployment is canceled, the + /// provisioningState is set to Canceled. Canceling a template + /// deployment stops the currently running template deployment and + /// leaves the resources partially deployed. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CancelAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Validates whether the specified template is syntactically correct + /// and will be accepted by Azure Resource Manager.. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// 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> ValidateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports the template used for specified deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// 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> ExportTemplateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// 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>> ListAtTenantScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a deployment from the deployment history. /// @@ -79,7 +497,7 @@ public partial interface IDeploymentsOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deploys resources at management group scope. /// @@ -294,7 +712,7 @@ public partial interface IDeploymentsOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deploys resources at subscription scope. /// @@ -501,7 +919,7 @@ public partial interface IDeploymentsOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deploys resources to a resource group. /// @@ -685,6 +1103,132 @@ public partial interface IDeploymentsOperations /// of 204 on success. If the asynchronous request failed, the URI in /// the Location header returns an error-level status code. /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at a given scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The scope of a deployment. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtScopeWithHttpMessagesAsync(string scope, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteAtTenantScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at tenant scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// 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> BeginCreateOrUpdateAtTenantScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// /// /// The management group ID. /// @@ -867,6 +1411,50 @@ public partial interface IDeploymentsOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Get all the deployments at the given scope. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all the deployments at the tenant scope. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Get all the deployments for a management group. /// /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IProvidersOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IProvidersOperations.cs index f6e2c667380b..07b8a896ce04 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IProvidersOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IProvidersOperations.cs @@ -97,6 +97,35 @@ public partial interface IProvidersOperations /// Task>> ListWithHttpMessagesAsync(int? top = default(int?), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all resource providers for the tenant. + /// + /// + /// The number of results to return. If null is passed returns all + /// providers. + /// + /// + /// 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 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>> ListAtTenantScopeWithHttpMessagesAsync(int? top = default(int?), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets the specified resource provider. /// /// @@ -123,6 +152,32 @@ public partial interface IProvidersOperations /// Task> GetWithHttpMessagesAsync(string resourceProviderNamespace, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// 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 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> GetAtTenantScopeWithHttpMessagesAsync(string resourceProviderNamespace, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets all resource providers for a subscription. /// /// @@ -144,5 +199,27 @@ public partial interface IProvidersOperations /// Thrown when a required parameter is null /// Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs index 3f10639f516e..f8f0d95f245a 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs @@ -43,7 +43,7 @@ public partial interface IResourceGroupsOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates or updates a resource group. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourcesOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourcesOperations.cs index 382e3a1c5953..d0136a5c2660 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourcesOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourcesOperations.cs @@ -168,7 +168,7 @@ public partial interface IResourcesOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a resource. /// @@ -347,7 +347,7 @@ public partial interface IResourcesOperations /// /// Thrown when a required parameter is null /// - Task> CheckExistenceByIdWithHttpMessagesAsync(string resourceId, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckExistenceByIdWithHttpMessagesAsync(string resourceId, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a resource by ID. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentValidateResult.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentValidateResult.cs index 8105bb8697de..a54cd677fd12 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentValidateResult.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentValidateResult.cs @@ -29,12 +29,10 @@ public DeploymentValidateResult() /// /// Initializes a new instance of the DeploymentValidateResult class. /// - /// Validation error. /// The template deployment /// properties. - public DeploymentValidateResult(ResourceManagementErrorWithDetails error = default(ResourceManagementErrorWithDetails), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) + public DeploymentValidateResult(DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) { - Error = error; Properties = properties; CustomInit(); } @@ -44,12 +42,6 @@ public DeploymentValidateResult() /// partial void CustomInit(); - /// - /// Gets or sets validation error. - /// - [JsonProperty(PropertyName = "error")] - public ResourceManagementErrorWithDetails Error { get; set; } - /// /// Gets or sets the template deployment properties. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorAdditionalInfo.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..87c3a1a6fd3b --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorAdditionalInfo.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.ResourceManager.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The resource management error additional info. + /// + public partial class ErrorAdditionalInfo + { + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + public ErrorAdditionalInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + /// The additional info type. + /// The additional info. + public ErrorAdditionalInfo(string type = default(string), object info = default(object)) + { + Type = type; + Info = info; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the additional info type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets the additional info. + /// + [JsonProperty(PropertyName = "info")] + public object Info { get; private set; } + + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorResponse.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorResponse.cs index 62013d09a06d..7c33b473287e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorResponse.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ErrorResponse.cs @@ -11,11 +11,12 @@ namespace Microsoft.Azure.Management.ResourceManager.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Error reponse indicates Azure Resource Manager is not able to process - /// the incoming request. The reason is provided in the error message. + /// The resource management error response. /// public partial class ErrorResponse { @@ -30,15 +31,18 @@ public ErrorResponse() /// /// Initializes a new instance of the ErrorResponse class. /// - /// Http status code. - /// Error code. - /// Error message indicating why the - /// operation failed. - public ErrorResponse(string httpStatus = default(string), string errorCode = default(string), string errorMessage = default(string)) + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + public ErrorResponse(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), IList additionalInfo = default(IList)) { - HttpStatus = httpStatus; - ErrorCode = errorCode; - ErrorMessage = errorMessage; + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; CustomInit(); } @@ -48,22 +52,34 @@ public ErrorResponse() partial void CustomInit(); /// - /// Gets or sets http status code. + /// Gets the error code. /// - [JsonProperty(PropertyName = "httpStatus")] - public string HttpStatus { get; set; } + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } /// - /// Gets or sets error code. + /// Gets the error message. /// - [JsonProperty(PropertyName = "errorCode")] - public string ErrorCode { get; set; } + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } /// - /// Gets or sets error message indicating why the operation failed. + /// Gets the error target. /// - [JsonProperty(PropertyName = "errorMessage")] - public string ErrorMessage { get; set; } + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + /// + /// Gets the error additional info. + /// + [JsonProperty(PropertyName = "additionalInfo")] + public IList AdditionalInfo { get; private set; } } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupExportResult.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupExportResult.cs index 86c8207f9988..482acb38db85 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupExportResult.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupExportResult.cs @@ -30,8 +30,8 @@ public ResourceGroupExportResult() /// Initializes a new instance of the ResourceGroupExportResult class. /// /// The template content. - /// The error. - public ResourceGroupExportResult(object template = default(object), ResourceManagementErrorWithDetails error = default(ResourceManagementErrorWithDetails)) + /// The template export error. + public ResourceGroupExportResult(object template = default(object), ErrorResponse error = default(ErrorResponse)) { Template = template; Error = error; @@ -50,10 +50,10 @@ public ResourceGroupExportResult() public object Template { get; set; } /// - /// Gets or sets the error. + /// Gets or sets the template export error. /// [JsonProperty(PropertyName = "error")] - public ResourceManagementErrorWithDetails Error { get; set; } + public ErrorResponse Error { get; set; } } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperations.cs index 757773397d80..e303b6a18381 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperations.cs @@ -621,6 +621,198 @@ internal ProvidersOperations(ResourceManagementClient client) return _result; } + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The number of results to return. If null is passed returns all providers. + /// + /// + /// 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. + /// + /// + /// 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>> ListAtTenantScopeWithHttpMessagesAsync(int? top = default(int?), string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("top", top); + tracingParameters.Add("expand", expand); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers").ToString(); + List _queryParameters = new List(); + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + 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("GET"); + _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; + } + /// /// Gets the specified resource provider. /// @@ -818,10 +1010,14 @@ internal ProvidersOperations(ResourceManagementClient client) } /// - /// Gets all resource providers for a subscription. + /// Gets the specified resource provider at the tenant level. /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// The namespace of the resource provider. + /// + /// + /// The $expand query parameter. For example, to include property aliases in + /// response, use $expand=resourceTypes/aliases. /// /// /// Headers that will be added to request. @@ -844,11 +1040,15 @@ internal ProvidersOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtTenantScopeWithHttpMessagesAsync(string resourceProviderNamespace, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextPageLink == null) + if (resourceProviderNamespace == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceProviderNamespace"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -857,9 +1057,365 @@ internal ProvidersOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("expand", expand); + tracingParameters.Add("resourceProviderNamespace", resourceProviderNamespace); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtTenantScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/{resourceProviderNamespace}").ToString(); + _url = _url.Replace("{resourceProviderNamespace}", System.Uri.EscapeDataString(resourceProviderNamespace)); + List _queryParameters = new List(); + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + 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("GET"); + _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; + } + + /// + /// Gets all resource providers for a subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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("GET"); + _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; + } + + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// 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>> ListAtTenantScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtTenantScopeNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperationsExtensions.cs index 817cdd9fe274..d399635951d7 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ProvidersOperationsExtensions.cs @@ -135,6 +135,52 @@ public static Provider Register(this IProvidersOperations operations, string res } } + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The number of results to return. If null is passed returns all providers. + /// + /// + /// 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. + /// + public static IPage ListAtTenantScope(this IProvidersOperations operations, int? top = default(int?), string expand = default(string)) + { + return operations.ListAtTenantScopeAsync(top, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The number of results to return. If null is passed returns all providers. + /// + /// + /// 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. + /// + public static async Task> ListAtTenantScopeAsync(this IProvidersOperations operations, int? top = default(int?), string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeWithHttpMessagesAsync(top, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets the specified resource provider. /// @@ -177,6 +223,48 @@ public static Provider Register(this IProvidersOperations operations, string res } } + /// + /// Gets the specified resource provider at the tenant level. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The namespace of the resource provider. + /// + /// + /// The $expand query parameter. For example, to include property aliases in + /// response, use $expand=resourceTypes/aliases. + /// + public static Provider GetAtTenantScope(this IProvidersOperations operations, string resourceProviderNamespace, string expand = default(string)) + { + return operations.GetAtTenantScopeAsync(resourceProviderNamespace, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified resource provider at the tenant level. + /// + /// + /// The operations group for this extension method. + /// + /// + /// 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. + /// + public static async Task GetAtTenantScopeAsync(this IProvidersOperations operations, string resourceProviderNamespace, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtTenantScopeWithHttpMessagesAsync(resourceProviderNamespace, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets all resource providers for a subscription. /// @@ -211,5 +299,39 @@ public static IPage ListNext(this IProvidersOperations operations, str } } + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtTenantScopeNext(this IProvidersOperations operations, string nextPageLink) + { + return operations.ListAtTenantScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all resource providers for the tenant. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtTenantScopeNextAsync(this IProvidersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtTenantScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs index c17c550a3e77..d579381247d4 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs @@ -75,7 +75,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -183,7 +183,7 @@ internal ResourceGroupsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -218,10 +218,9 @@ internal ResourceGroupsOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs index 75d30fd419cf..ea0b51a3cd70 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs @@ -31,9 +31,9 @@ public static partial class ResourceGroupsOperationsExtensions /// /// The name of the resource group to check. The name is case insensitive. /// - public static bool CheckExistence(this IResourceGroupsOperations operations, string resourceGroupName) + public static void CheckExistence(this IResourceGroupsOperations operations, string resourceGroupName) { - return operations.CheckExistenceAsync(resourceGroupName).GetAwaiter().GetResult(); + operations.CheckExistenceAsync(resourceGroupName).GetAwaiter().GetResult(); } /// @@ -48,12 +48,9 @@ public static bool CheckExistence(this IResourceGroupsOperations operations, str /// /// The cancellation token. /// - public static async Task CheckExistenceAsync(this IResourceGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceAsync(this IResourceGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs index 987ba41b2d1c..7bf5af09ee3e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs @@ -358,7 +358,7 @@ private void Initialize() Tags = new TagsOperations(this); DeploymentOperations = new DeploymentOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2019-05-10"; + ApiVersion = "2019-07-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperations.cs index 89b32c52a858..b9bf4048c98a 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperations.cs @@ -557,7 +557,7 @@ internal ResourcesOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -690,7 +690,7 @@ internal ResourcesOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -725,10 +725,9 @@ internal ResourcesOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -1123,7 +1122,7 @@ internal ResourcesOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceByIdWithHttpMessagesAsync(string resourceId, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckExistenceByIdWithHttpMessagesAsync(string resourceId, string apiVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceId == null) { @@ -1212,7 +1211,7 @@ internal ResourcesOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 404) + if ((int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1247,10 +1246,9 @@ internal ResourcesOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); @@ -1887,7 +1885,7 @@ internal ResourcesOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204 && (int)_statusCode != 409) + if ((int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperationsExtensions.cs index 409feb86556d..87840df6033f 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourcesOperationsExtensions.cs @@ -231,9 +231,9 @@ public static void ValidateMoveResources(this IResourcesOperations operations, s /// /// The API version to use for the operation. /// - public static bool CheckExistence(this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion) + public static void CheckExistence(this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion) { - return operations.CheckExistenceAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion).GetAwaiter().GetResult(); + operations.CheckExistenceAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion).GetAwaiter().GetResult(); } /// @@ -264,12 +264,9 @@ public static bool CheckExistence(this IResourcesOperations operations, string r /// /// The cancellation token. /// - public static async Task CheckExistenceAsync(this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceAsync(this IResourcesOperations operations, string resourceGroupName, string resourceProviderNamespace, string parentResourcePath, string resourceType, string resourceName, string apiVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceWithHttpMessagesAsync(resourceGroupName, resourceProviderNamespace, parentResourcePath, resourceType, resourceName, apiVersion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -559,9 +556,9 @@ public static GenericResource Get(this IResourcesOperations operations, string r /// /// The API version to use for the operation. /// - public static bool CheckExistenceById(this IResourcesOperations operations, string resourceId, string apiVersion) + public static void CheckExistenceById(this IResourcesOperations operations, string resourceId, string apiVersion) { - return operations.CheckExistenceByIdAsync(resourceId, apiVersion).GetAwaiter().GetResult(); + operations.CheckExistenceByIdAsync(resourceId, apiVersion).GetAwaiter().GetResult(); } /// @@ -581,12 +578,9 @@ public static bool CheckExistenceById(this IResourcesOperations operations, stri /// /// The cancellation token. /// - public static async Task CheckExistenceByIdAsync(this IResourcesOperations operations, string resourceId, string apiVersion, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckExistenceByIdAsync(this IResourcesOperations operations, string resourceId, string apiVersion, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckExistenceByIdWithHttpMessagesAsync(resourceId, apiVersion, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.CheckExistenceByIdWithHttpMessagesAsync(resourceId, apiVersion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs index 418a22842fb8..2024866e9615 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs @@ -19,16 +19,16 @@ public static IEnumerable> ApiInfo_ResourceManagem { return new Tuple[] { - new Tuple("Management", "DeploymentOperations", "2019-05-10"), - new Tuple("Management", "Deployments", "2019-05-10"), - new Tuple("ResourceManagementClient", "DeploymentOperations", "2019-05-10"), - new Tuple("ResourceManagementClient", "Providers", "2019-05-10"), - new Tuple("ResourceManagementClient", "ResourceGroups", "2019-05-10"), - new Tuple("ResourceManagementClient", "Resources", "2019-05-10"), - new Tuple("ResourceManagementClient", "Tags", "2019-05-10"), - new Tuple("Resources", "DeploymentOperations", "2019-05-10"), - new Tuple("Resources", "Deployments", "2019-05-10"), - new Tuple("Resources", "Operations", "2019-05-10"), + new Tuple("Management", "DeploymentOperations", "2019-07-01"), + new Tuple("Management", "Deployments", "2019-07-01"), + new Tuple("ResourceManagementClient", "DeploymentOperations", "2019-07-01"), + new Tuple("ResourceManagementClient", "Providers", "2019-07-01"), + new Tuple("ResourceManagementClient", "ResourceGroups", "2019-07-01"), + new Tuple("ResourceManagementClient", "Resources", "2019-07-01"), + new Tuple("ResourceManagementClient", "Tags", "2019-07-01"), + new Tuple("Resources", "DeploymentOperations", "2019-07-01"), + new Tuple("Resources", "Deployments", "2019-07-01"), + new Tuple("Resources", "Operations", "2019-07-01"), }.AsEnumerable(); } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj b/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj index fc5fc0d1a7d2..3855eefcf67c 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj @@ -7,11 +7,11 @@ Microsoft.Azure.Management.ResourceManager Provides resource group and resource management capabilities for Microsoft Azure. Microsoft.Azure.Management.ResourceManager - 2.2.0-preview + 2.3.0-preview Microsoft Azure resource management;resource management;resource groups; diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs index 5010cb67f8a2..2961a88fce9b 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure resource management operations including Resource Groups.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.3.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj b/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj index db4276c8b0ae..fad0d1ca237e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj @@ -29,16 +29,7 @@ - - PreserveNewest - - - PreserveNewest - - - Always - - + Always diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index 859d278076ae..3030a63b47da 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -485,5 +485,222 @@ public void ManagementGroupLevelDeployment() Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); } } + + [Fact] + public void TenantLevelDeployment() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string deploymentName = TestUtilities.GenerateName("csharpsdktest"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "tenant_level_template.json"))), + Parameters = + JObject.Parse("{'managementGroupId': {'value': 'tiano-mgtest01'}}"), + Mode = DeploymentMode.Incremental, + }, + Location = "East US 2" + }; + + //Validate + var validationResult = client.Deployments.ValidateAtTenantScope(deploymentName, parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtTenantScope(deploymentName, parameters); + + var deployment = client.Deployments.GetAtTenantScope(deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + + var deploymentOperations = client.DeploymentOperations.ListAtTenantScope(deploymentName); + Assert.Equal(4, deploymentOperations.Count()); + } + } + + [Fact] + public void DeploymentWithScope_AtTenant() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string deploymentName = TestUtilities.GenerateName("csharpsdktest"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "tenant_level_template.json"))), + Parameters = + JObject.Parse("{'managementGroupId': {'value': 'tiano-mgtest01'}}"), + Mode = DeploymentMode.Incremental, + }, + Location = "East US 2" + }; + + //Validate + var validationResult = client.Deployments.ValidateAtScope(scope: "", deploymentName: deploymentName, parameters: parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtScope(scope: "", deploymentName: deploymentName, parameters: parameters); + + var deployment = client.Deployments.GetAtScope(scope: "", deploymentName: deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + + var deploymentOperations = client.DeploymentOperations.ListAtScope(scope: "", deploymentName: deploymentName); + Assert.Equal(4, deploymentOperations.Count()); + } + } + + [Fact] + public void DeploymentWithScope_AtManagementGroup() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string groupId = "tiano-mgtest01"; + string deploymentName = TestUtilities.GenerateName("csharpsdktest"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "management_group_level_template.json"))), + Parameters = + JObject.Parse("{'storageAccountName': {'value': 'tianosatestgl'}}"), + Mode = DeploymentMode.Incremental, + }, + Location = "East US" + }; + + var managementGroupScope = $"/providers/Microsoft.Management/managementGroups/{groupId}"; + + //Validate + var validationResult = client.Deployments.ValidateAtScope(scope: managementGroupScope, deploymentName: deploymentName, parameters: parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtScope(scope: managementGroupScope, deploymentName: deploymentName, parameters: parameters); + + var deployment = client.Deployments.GetAtScope(scope: managementGroupScope, deploymentName: deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + + var deploymentOperations = client.DeploymentOperations.ListAtScope(scope: managementGroupScope, deploymentName: deploymentName); + Assert.Equal(4, deploymentOperations.Count()); + } + } + + [Fact] + public void DeploymentWithScope_AtSubscription() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string groupName = "SDK-test"; + string deploymentName = TestUtilities.GenerateName("csmd"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "subscription_level_template.json"))), + Parameters = + JObject.Parse("{'storageAccountName': {'value': 'armbuilddemo1803'}}"), + Mode = DeploymentMode.Incremental, + }, + Location = "WestUS" + }; + + client.ResourceGroups.CreateOrUpdate(groupName, new ResourceGroup { Location = "WestUS" }); + + var subscriptionScope = $"/subscriptions/{client.SubscriptionId}"; + + //Validate + var validationResult = client.Deployments.ValidateAtScope(scope: subscriptionScope, deploymentName: deploymentName, parameters: parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtScope(scope: subscriptionScope, deploymentName: deploymentName, parameters: parameters); + + var deployment = client.Deployments.GetAtScope(scope: subscriptionScope, deploymentName: deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + + var deploymentOperations = client.DeploymentOperations.ListAtScope(scope: subscriptionScope, deploymentName: deploymentName); + Assert.Equal(4, deploymentOperations.Count()); + } + } + + [Fact] + public void DeploymentWithScope_AtResourceGroup() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string groupName = "SDK-test-01"; + string deploymentName = TestUtilities.GenerateName("csmd"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "simple-storage-account.json"))), + Parameters = + JObject.Parse("{'storageAccountName': {'value': 'tianotest105'}}"), + Mode = DeploymentMode.Incremental, + } + }; + + client.ResourceGroups.CreateOrUpdate(groupName, new ResourceGroup { Location = "WestUS" }); + + var resourceGroupScope = $"/subscriptions/{client.SubscriptionId}/resourceGroups/{groupName}"; + + //Validate + var validationResult = client.Deployments.ValidateAtScope(scope: resourceGroupScope, deploymentName: deploymentName, parameters: parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtScope(scope: resourceGroupScope, deploymentName: deploymentName, parameters: parameters); + + var deployment = client.Deployments.GetAtScope(scope: resourceGroupScope, deploymentName: deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + + var deploymentOperations = client.DeploymentOperations.ListAtScope(scope: resourceGroupScope, deploymentName: deploymentName); + Assert.Equal(2, deploymentOperations.Count()); + } + } } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/tenant_level_template.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/tenant_level_template.json new file mode 100644 index 000000000000..1fa57c5ededf --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/tenant_level_template.json @@ -0,0 +1,120 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "managementGroupId": { + "type": "string", + "defaultValue": "tiano-mgtest01" + }, + "subscriptionId": { + "type": "string", + "defaultValue": "89ec4d1d-dcc7-4a3f-a701-0a5d074c8505" + }, + "roleDefinitionId": { + "type": "string", + "defaultValue": "0cb07228-4614-4814-ac1a-c4e39793ce59" + } + }, + "variables": { + "managementGroupScope": "[concat('Microsoft.Management/managementGroups/', parameters('managementGroupId'))]", + "managementGroupFullyQualifiedId": "[concat('/providers/', variables('managementGroupScope'))]" + }, + "resources": [ + { + "type": "Microsoft.Authorization/roleDefinitions", + "name": "[parameters('roleDefinitionId')]", + "apiVersion": "2018-07-01", + "properties": { + "roleName": "Tiano SDK Test Role", + "description": "something", + "type": "CustomRole", + "permissions": [ + { + "actions": [ + "Microsoft.Storage/*/read" + ], + "notActions": [ + + ] + } + ], + "assignableScopes": [ + "[variables('managementGroupFullyQualifiedId')]" + ] + } + }, + { + "type": "Microsoft.Resources/deployments", + "name": "mg-nested", + "apiVersion": "2019-07-01", + "location": "West US", + "scope": "[variables('managementGroupScope')]", + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + + }, + "variables": { + + }, + "resources": [ + { + "type": "Microsoft.Authorization/policyDefinitions", + "name": "policy2", + "apiVersion": "2016-12-01", + "properties": { + "policyType": "Custom", + "parameters": { + + }, + "policyRule": { + "if": { + "field": "location", + "equals": "northeurope" + }, + "then": { + "effect": "deny" + } + } + } + } + ] + }, + "mode": "Incremental" + } + }, + { + "type": "Microsoft.Resources/deployments", + "name": "sub-nested", + "apiVersion": "2019-07-01", + "location": "East US", + "subscriptionId": "[parameters('subscriptionId')]", + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + + }, + "variables": { + + }, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "name": "sdk-testrg", + "apiVersion": "2019-07-01", + "location": "East US 2", + "properties": { + + } + } + ] + }, + "mode": "Incremental" + } + } + ] +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtManagementGroup.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtManagementGroup.json new file mode 100644 index 000000000000..b9393d77f053 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtManagementGroup.json @@ -0,0 +1,429 @@ +{ + "Entries": [ + { + "RequestUri": "/%2Fproviders%2FMicrosoft.Management%2FmanagementGroups%2Ftiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/validate?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5NYW5hZ2VtZW50JTJGbWFuYWdlbWVudEdyb3VwcyUyRnRpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tianosatestgl\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01\",\r\n \"policyDefinitionId\": \"[concat('/providers/Microsoft.Management/managementGroups/tiano-mgtest01/', 'providers/', 'Microsoft.Authorization/policyDefinitions/', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sdktest-subnested\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"West US\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"rg-001\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"rg-001\",\r\n \"dependsOn\": [\r\n \"rg-001\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee2022e1-4e57-4202-9729-ee488da2ae3d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:45:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c43022fa-76f4-4c6d-9f25-eeb6898ea768" + ], + "x-ms-correlation-request-id": [ + "c43022fa-76f4-4c6d-9f25-eeb6898ea768" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224530Z:c43022fa-76f4-4c6d-9f25-eeb6898ea768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071\",\r\n \"name\": \"csharpsdktest6071\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:45:29.7477841Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c43022fa-76f4-4c6d-9f25-eeb6898ea768\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/sdktest-subnested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fproviders%2FMicrosoft.Management%2FmanagementGroups%2Ftiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5NYW5hZ2VtZW50JTJGbWFuYWdlbWVudEdyb3VwcyUyRnRpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tianosatestgl\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01\",\r\n \"policyDefinitionId\": \"[concat('/providers/Microsoft.Management/managementGroups/tiano-mgtest01/', 'providers/', 'Microsoft.Authorization/policyDefinitions/', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sdktest-subnested\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"West US\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"rg-001\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"rg-001\",\r\n \"dependsOn\": [\r\n \"rg-001\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96c85077-7787-4f44-813e-39e83ed10ae3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:45:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operationStatuses/08586364753547628998?api-version=2019-07-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "02c09615-b6d6-4840-805d-3ac6657efd2f" + ], + "x-ms-correlation-request-id": [ + "02c09615-b6d6-4840-805d-3ac6657efd2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224532Z:02c09615-b6d6-4840-805d-3ac6657efd2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071\",\r\n \"name\": \"csharpsdktest6071\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-08-06T22:45:32.3523736Z\",\r\n \"duration\": \"PT1.6376568S\",\r\n \"correlationId\": \"02c09615-b6d6-4840-805d-3ac6657efd2f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operationStatuses/08586364753547628998?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzUzNTQ3NjI4OTk4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:46:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5826427f-94b8-4aa6-835f-ff99c1965cb5" + ], + "x-ms-correlation-request-id": [ + "5826427f-94b8-4aa6-835f-ff99c1965cb5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224602Z:5826427f-94b8-4aa6-835f-ff99c1965cb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operationStatuses/08586364753547628998?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzUzNTQ3NjI4OTk4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:46:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "5dde50e7-ec36-4e20-abd0-74cad2eb3744" + ], + "x-ms-correlation-request-id": [ + "5dde50e7-ec36-4e20-abd0-74cad2eb3744" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224633Z:5dde50e7-ec36-4e20-abd0-74cad2eb3744" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fproviders%2FMicrosoft.Management%2FmanagementGroups%2Ftiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5NYW5hZ2VtZW50JTJGbWFuYWdlbWVudEdyb3VwcyUyRnRpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:46:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d2c7545a-3382-4019-9084-946017735441" + ], + "x-ms-correlation-request-id": [ + "d2c7545a-3382-4019-9084-946017735441" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224633Z:d2c7545a-3382-4019-9084-946017735441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1813" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071\",\r\n \"name\": \"csharpsdktest6071\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:46:31.038577Z\",\r\n \"duration\": \"PT1M0.3238602S\",\r\n \"correlationId\": \"02c09615-b6d6-4840-805d-3ac6657efd2f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fproviders%2FMicrosoft.Management%2FmanagementGroups%2Ftiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5NYW5hZ2VtZW50JTJGbWFuYWdlbWVudEdyb3VwcyUyRnRpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9cab3b3-a8b8-4111-b9f2-91485f225dfe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:46:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "694cbda3-48a8-4fc7-982c-f46be4db2a44" + ], + "x-ms-correlation-request-id": [ + "694cbda3-48a8-4fc7-982c-f46be4db2a44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224633Z:694cbda3-48a8-4fc7-982c-f46be4db2a44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1813" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071\",\r\n \"name\": \"csharpsdktest6071\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:46:31.038577Z\",\r\n \"duration\": \"PT1M0.3238602S\",\r\n \"correlationId\": \"02c09615-b6d6-4840-805d-3ac6657efd2f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fproviders%2FMicrosoft.Management%2FmanagementGroups%2Ftiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operations?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnByb3ZpZGVycyUyRk1pY3Jvc29mdC5NYW5hZ2VtZW50JTJGbWFuYWdlbWVudEdyb3VwcyUyRnRpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q2MDcxL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d904ed90-8525-40aa-89cc-ad498e5453f8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:46:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "9385eb76-c953-4f95-8dda-b9be1cb202f4" + ], + "x-ms-correlation-request-id": [ + "9385eb76-c953-4f95-8dda-b9be1cb202f4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T224633Z:9385eb76-c953-4f95-8dda-b9be1cb202f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2612" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operations/C4BD8862752210C1\",\r\n \"operationId\": \"C4BD8862752210C1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:46:30.885437Z\",\r\n \"duration\": \"PT54.9222844S\",\r\n \"trackingId\": \"f6b392bf-dcdd-4a3a-9840-4371d92593cc\",\r\n \"serviceRequestId\": \"67cc7858-0f70-4ff6-91e0-9ad292054cac\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/sdktest-subnested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"sdktest-subnested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operations/EC5EC028160C085A\",\r\n \"operationId\": \"EC5EC028160C085A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:45:38.5961615Z\",\r\n \"duration\": \"PT0.1579109S\",\r\n \"trackingId\": \"4f228d3e-6a5e-43e9-9ca0-dd565df9fc7e\",\r\n \"serviceRequestId\": \"eastus2:aa8e8772-cf6f-4637-98bd-cfe9ea58ce9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operations/8DA0DF42F92BC438\",\r\n \"operationId\": \"8DA0DF42F92BC438\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:45:38.1886163Z\",\r\n \"duration\": \"PT2.2254637S\",\r\n \"trackingId\": \"25accd28-4e46-494e-bf8f-45f924b2a65c\",\r\n \"serviceRequestId\": \"eastus2:7ec1cb0c-0dda-460c-9504-336039cf440b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest6071/operations/08586364753547628998\",\r\n \"operationId\": \"08586364753547628998\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:46:31.0117399Z\",\r\n \"duration\": \"PT0.0782949S\",\r\n \"trackingId\": \"4237f208-7b60-4aa2-b5a5-661f4d565101\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "DeploymentWithScope_AtManagementGroup": [ + "csharpsdktest6071" + ] + }, + "Variables": { + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" + } +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtResourceGroup.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtResourceGroup.json new file mode 100644 index 000000000000..3deb737bb13d --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtResourceGroup.json @@ -0,0 +1,441 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test-01?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL1NESy10ZXN0LTAxP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3848e487-2b75-4020-9466-45e6800dd2db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:15:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "634c6f8b-ee85-498e-8a20-7949b0cb93f1" + ], + "x-ms-correlation-request-id": [ + "634c6f8b-ee85-498e-8a20-7949b0cb93f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231553Z:634c6f8b-ee85-498e-8a20-7949b0cb93f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01\",\r\n \"name\": \"SDK-test-01\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b%2FresourceGroups%2FSDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/validate?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIlMkZyZXNvdXJjZUdyb3VwcyUyRlNESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4L3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f65f087-9fe6-48b1-8fb7-3123320ed4a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "788" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:15:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4c9c4473-7e17-4fc4-b6a3-d55681e84670" + ], + "x-ms-correlation-request-id": [ + "4c9c4473-7e17-4fc4-b6a3-d55681e84670" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231554Z:4c9c4473-7e17-4fc4-b6a3-d55681e84670" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "806" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718\",\r\n \"name\": \"csmd2718\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T23:15:53.8400436Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"4c9c4473-7e17-4fc4-b6a3-d55681e84670\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Storage/storageAccounts/tianotest105\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b%2FresourceGroups%2FSDK-test-01/providers/Microsoft.Resources/deployments/csmd2718?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIlMkZyZXNvdXJjZUdyb3VwcyUyRlNESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83a5c18d-842f-4ea9-950d-cae391fb08f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "788" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:15:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/operationStatuses/08586364735310552648?api-version=2019-07-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "41e05785-d9a2-4733-972e-a59d7151b5e9" + ], + "x-ms-correlation-request-id": [ + "41e05785-d9a2-4733-972e-a59d7151b5e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231554Z:41e05785-d9a2-4733-972e-a59d7151b5e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "645" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718\",\r\n \"name\": \"csmd2718\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-08-06T23:15:54.5560555Z\",\r\n \"duration\": \"PT0.1337126S\",\r\n \"correlationId\": \"41e05785-d9a2-4733-972e-a59d7151b5e9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/operationStatuses/08586364735310552648?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL1NESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzM1MzEwNTUyNjQ4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:16:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "6ef0b865-5667-48fa-9d38-45806afae328" + ], + "x-ms-correlation-request-id": [ + "6ef0b865-5667-48fa-9d38-45806afae328" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231624Z:6ef0b865-5667-48fa-9d38-45806afae328" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b%2FresourceGroups%2FSDK-test-01/providers/Microsoft.Resources/deployments/csmd2718?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIlMkZyZXNvdXJjZUdyb3VwcyUyRlNESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:16:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8c363113-7aa9-48a5-8f0c-4cd4e1ef93df" + ], + "x-ms-correlation-request-id": [ + "8c363113-7aa9-48a5-8f0c-4cd4e1ef93df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231624Z:8c363113-7aa9-48a5-8f0c-4cd4e1ef93df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "825" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718\",\r\n \"name\": \"csmd2718\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T23:16:19.9118597Z\",\r\n \"duration\": \"PT25.4895168S\",\r\n \"correlationId\": \"41e05785-d9a2-4733-972e-a59d7151b5e9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Storage/storageAccounts/tianotest105\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b%2FresourceGroups%2FSDK-test-01/providers/Microsoft.Resources/deployments/csmd2718?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIlMkZyZXNvdXJjZUdyb3VwcyUyRlNESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94a48079-a56d-4685-97bc-a2ede2476f2f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:16:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "9f4a182b-e585-4897-abe4-8e80e3d99363" + ], + "x-ms-correlation-request-id": [ + "9f4a182b-e585-4897-abe4-8e80e3d99363" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231624Z:9f4a182b-e585-4897-abe4-8e80e3d99363" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "825" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718\",\r\n \"name\": \"csmd2718\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest105\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T23:16:19.9118597Z\",\r\n \"duration\": \"PT25.4895168S\",\r\n \"correlationId\": \"41e05785-d9a2-4733-972e-a59d7151b5e9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Storage/storageAccounts/tianotest105\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b%2FresourceGroups%2FSDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/operations?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIlMkZyZXNvdXJjZUdyb3VwcyUyRlNESy10ZXN0LTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQyNzE4L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ea4faaa-5dc8-4a76-adc8-cd73f0d97f7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 23:16:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2365a3e9-3a04-4db3-b918-286fe7f2ae2f" + ], + "x-ms-correlation-request-id": [ + "2365a3e9-3a04-4db3-b918-286fe7f2ae2f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T231625Z:2365a3e9-3a04-4db3-b918-286fe7f2ae2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/operations/829AE8037D46643D\",\r\n \"operationId\": \"829AE8037D46643D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T23:16:18.6741907Z\",\r\n \"duration\": \"PT23.1243416S\",\r\n \"trackingId\": \"86d4e20e-4e2f-473c-8e06-a316ed293a8c\",\r\n \"serviceRequestId\": \"f222f295-3ac0-4db0-83c4-937d093961e8\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Storage/storageAccounts/tianotest105\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tianotest105\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test-01/providers/Microsoft.Resources/deployments/csmd2718/operations/08586364735310552648\",\r\n \"operationId\": \"08586364735310552648\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T23:16:19.7034594Z\",\r\n \"duration\": \"PT0.6146107S\",\r\n \"trackingId\": \"e80b4970-c038-412f-aa9f-edb4e174fa1e\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "DeploymentWithScope_AtResourceGroup": [ + "csmd2718" + ] + }, + "Variables": { + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" + } +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtSubscription.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtSubscription.json new file mode 100644 index 000000000000..bc7b267654fc --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtSubscription.json @@ -0,0 +1,549 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL1NESy10ZXN0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b4532d0-4600-4f0f-9529-ddda25c16af9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:57:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "33f194fb-bc4f-4b7e-9043-0ee8ee0801b2" + ], + "x-ms-correlation-request-id": [ + "33f194fb-bc4f-4b7e-9043-0ee8ee0801b2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225733Z:33f194fb-bc4f-4b7e-9043-0ee8ee0801b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test\",\r\n \"name\": \"SDK-test\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/validate?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvY3NtZDQ2NzcvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo1801\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"SDK-test\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dabef5f-9c8d-4aab-86a5-24267de9efa8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2410" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:57:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "90658edc-ee6d-404c-a20c-1e37bda29af7" + ], + "x-ms-correlation-request-id": [ + "90658edc-ee6d-404c-a20c-1e37bda29af7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225734Z:90658edc-ee6d-404c-a20c-1e37bda29af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1788" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677\",\r\n \"name\": \"csmd4677\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:57:33.7653345Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"90658edc-ee6d-404c-a20c-1e37bda29af7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvY3NtZDQ2Nzc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo1801\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"SDK-test\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bb8f15c8-f5fc-4403-afb4-edf1f88665c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2410" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:57:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operationStatuses/08586364746307161272?api-version=2019-07-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59" + ], + "x-ms-correlation-request-id": [ + "e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225735Z:e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1241" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677\",\r\n \"name\": \"csmd4677\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-08-06T22:57:35.0588028Z\",\r\n \"duration\": \"PT0.2973056S\",\r\n \"correlationId\": \"e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operationStatuses/08586364746307161272?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ0Njc3L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzQ2MzA3MTYxMjcyP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:58:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "151d316b-204f-4fa4-b733-7316b197cc46" + ], + "x-ms-correlation-request-id": [ + "151d316b-204f-4fa4-b733-7316b197cc46" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225805Z:151d316b-204f-4fa4-b733-7316b197cc46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operationStatuses/08586364746307161272?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ0Njc3L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzQ2MzA3MTYxMjcyP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:58:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4e16f281-e3a4-4b77-9d8c-2289529e98ce" + ], + "x-ms-correlation-request-id": [ + "4e16f281-e3a4-4b77-9d8c-2289529e98ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225835Z:4e16f281-e3a4-4b77-9d8c-2289529e98ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operationStatuses/08586364746307161272?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ0Njc3L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzQ2MzA3MTYxMjcyP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:59:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ce233cf8-6bff-4954-be72-4081c79ec626" + ], + "x-ms-correlation-request-id": [ + "ce233cf8-6bff-4954-be72-4081c79ec626" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225905Z:ce233cf8-6bff-4954-be72-4081c79ec626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvY3NtZDQ2Nzc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:59:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "c7cdc02f-6d4c-4ea2-ae55-26c27e7ccf48" + ], + "x-ms-correlation-request-id": [ + "c7cdc02f-6d4c-4ea2-ae55-26c27e7ccf48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225905Z:c7cdc02f-6d4c-4ea2-ae55-26c27e7ccf48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677\",\r\n \"name\": \"csmd4677\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:58:48.9491535Z\",\r\n \"duration\": \"PT1M14.1876563S\",\r\n \"correlationId\": \"e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvY3NtZDQ2Nzc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a51cbf19-8365-409e-93f0-f7de97202068" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:59:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "dfc19502-fc6c-4c1a-9190-88fceef756ec" + ], + "x-ms-correlation-request-id": [ + "dfc19502-fc6c-4c1a-9190-88fceef756ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225905Z:dfc19502-fc6c-4c1a-9190-88fceef756ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677\",\r\n \"name\": \"csmd4677\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:58:48.9491535Z\",\r\n \"duration\": \"PT1M14.1876563S\",\r\n \"correlationId\": \"e3d5e11d-18b5-4be3-b4cd-c1693fdd4e59\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Ffb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operations?api-version=2019-07-01", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZmYjNhM2Q2Yi00NGM4LTQ0ZjUtODhjOS1iMjA5MTdjOWI5NmIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvY3NtZDQ2Nzcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc99c4c1-21e4-4fd5-b02d-8e301bdbf4f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:59:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "94e21d36-6861-4c7c-8ce0-db5821ad3b1a" + ], + "x-ms-correlation-request-id": [ + "94e21d36-6861-4c7c-8ce0-db5821ad3b1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T225905Z:94e21d36-6861-4c7c-8ce0-db5821ad3b1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operations/C5E18B4900C96320\",\r\n \"operationId\": \"C5E18B4900C96320\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:57:37.3305373Z\",\r\n \"duration\": \"PT0.5689251S\",\r\n \"trackingId\": \"4181b2f6-02db-4e34-abe7-759554c38247\",\r\n \"serviceRequestId\": \"westus:0e1833f7-2557-4582-b00b-d3e9669822b5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operations/E94E5BCFA18DF29D\",\r\n \"operationId\": \"E94E5BCFA18DF29D\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:57:36.7155054Z\",\r\n \"duration\": \"PT1.1378043S\",\r\n \"trackingId\": \"b3d0f4e3-147c-4e00-8dcc-48c621b31983\",\r\n \"serviceRequestId\": \"westus:b2a830c1-e367-40c3-9cb2-80bff2d34606\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operations/2B2BC710DFB10EC6\",\r\n \"operationId\": \"2B2BC710DFB10EC6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:58:47.1572677Z\",\r\n \"duration\": \"PT1M11.5795666S\",\r\n \"trackingId\": \"a0fa2cc0-f051-4346-af4c-df76cd6d8c6d\",\r\n \"serviceRequestId\": \"31d9ecfa-c633-4a56-9627-d7016c0d7778\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd4677/operations/08586364746307161272\",\r\n \"operationId\": \"08586364746307161272\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:58:48.7351637Z\",\r\n \"duration\": \"PT1.0631973S\",\r\n \"trackingId\": \"0ce6bf08-e73f-483f-b16c-794232242836\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "DeploymentWithScope_AtSubscription": [ + "csmd4677" + ] + }, + "Variables": { + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" + } +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtTenant.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtTenant.json new file mode 100644 index 000000000000..60f3fae840a4 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/DeploymentWithScope_AtTenant.json @@ -0,0 +1,429 @@ +{ + "Entries": [ + { + "RequestUri": "//providers/Microsoft.Resources/deployments/csharpsdktest8195/validate?api-version=2019-07-01", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc2hhcnBzZGt0ZXN0ODE5NS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"variables\": {\r\n \"managementGroupScope\": \"[concat('Microsoft.Management/managementGroups/', parameters('managementGroupId'))]\",\r\n \"managementGroupFullyQualifiedId\": \"[concat('/providers/', variables('managementGroupScope'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"[parameters('roleDefinitionId')]\",\r\n \"apiVersion\": \"2018-07-01\",\r\n \"properties\": {\r\n \"roleName\": \"Tiano SDK Test Role\",\r\n \"description\": \"something\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"[variables('managementGroupFullyQualifiedId')]\"\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"mg-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"West US\",\r\n \"scope\": \"[variables('managementGroupScope')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sub-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US\",\r\n \"subscriptionId\": \"[parameters('subscriptionId')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"sdk-testrg\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US 2\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"value\": \"tiano-mgtest01\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18e1be4f-9c9e-42ad-a1d8-f37859374641" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3898" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:36:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "1d4ddd45-aa49-48a4-888a-7ed83e53536e" + ], + "x-ms-correlation-request-id": [ + "1d4ddd45-aa49-48a4-888a-7ed83e53536e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223624Z:1d4ddd45-aa49-48a4-888a-7ed83e53536e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195\",\r\n \"name\": \"csharpsdktest8195\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:36:24.3860878Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"1d4ddd45-aa49-48a4-888a-7ed83e53536e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/mg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/providers/Microsoft.Resources/deployments/sub-nested\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//providers/Microsoft.Resources/deployments/csharpsdktest8195?api-version=2019-07-01", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc2hhcnBzZGt0ZXN0ODE5NT9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"variables\": {\r\n \"managementGroupScope\": \"[concat('Microsoft.Management/managementGroups/', parameters('managementGroupId'))]\",\r\n \"managementGroupFullyQualifiedId\": \"[concat('/providers/', variables('managementGroupScope'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"[parameters('roleDefinitionId')]\",\r\n \"apiVersion\": \"2018-07-01\",\r\n \"properties\": {\r\n \"roleName\": \"Tiano SDK Test Role\",\r\n \"description\": \"something\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"[variables('managementGroupFullyQualifiedId')]\"\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"mg-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"West US\",\r\n \"scope\": \"[variables('managementGroupScope')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sub-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US\",\r\n \"subscriptionId\": \"[parameters('subscriptionId')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"sdk-testrg\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US 2\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"value\": \"tiano-mgtest01\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f346854b-89c5-402c-8a3d-7dd03c605a49" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3898" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:36:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Resources/deployments/csharpsdktest8195/operationStatuses/08586364759006983376?api-version=2019-07-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "82753aec-f6f2-4ada-9d7c-8e871ffea97e" + ], + "x-ms-correlation-request-id": [ + "82753aec-f6f2-4ada-9d7c-8e871ffea97e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223626Z:82753aec-f6f2-4ada-9d7c-8e871ffea97e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195\",\r\n \"name\": \"csharpsdktest8195\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-08-06T22:36:26.2548963Z\",\r\n \"duration\": \"PT1.4756145S\",\r\n \"correlationId\": \"82753aec-f6f2-4ada-9d7c-8e871ffea97e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest8195/operationStatuses/08586364759006983376?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q4MTk1L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzU5MDA2OTgzMzc2P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:36:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d1e69bd9-a029-42cf-b1e7-406a431bf3f3" + ], + "x-ms-correlation-request-id": [ + "d1e69bd9-a029-42cf-b1e7-406a431bf3f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223656Z:d1e69bd9-a029-42cf-b1e7-406a431bf3f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest8195/operationStatuses/08586364759006983376?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q4MTk1L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzU5MDA2OTgzMzc2P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:37:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a358dec7-16d5-48c7-846a-f3f2cd4a53d8" + ], + "x-ms-correlation-request-id": [ + "a358dec7-16d5-48c7-846a-f3f2cd4a53d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223727Z:a358dec7-16d5-48c7-846a-f3f2cd4a53d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//providers/Microsoft.Resources/deployments/csharpsdktest8195?api-version=2019-07-01", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc2hhcnBzZGt0ZXN0ODE5NT9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:37:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "80afa4cb-2dd7-470a-b45b-657983ce111b" + ], + "x-ms-correlation-request-id": [ + "80afa4cb-2dd7-470a-b45b-657983ce111b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223727Z:80afa4cb-2dd7-470a-b45b-657983ce111b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195\",\r\n \"name\": \"csharpsdktest8195\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:37:00.8939749Z\",\r\n \"duration\": \"PT36.1146931S\",\r\n \"correlationId\": \"82753aec-f6f2-4ada-9d7c-8e871ffea97e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//providers/Microsoft.Resources/deployments/csharpsdktest8195?api-version=2019-07-01", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc2hhcnBzZGt0ZXN0ODE5NT9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ef123d5-fa77-43d9-90eb-c6f6f7d96e93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:37:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "fb56ae9a-e286-495d-accc-662657209bc8" + ], + "x-ms-correlation-request-id": [ + "fb56ae9a-e286-495d-accc-662657209bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223727Z:fb56ae9a-e286-495d-accc-662657209bc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195\",\r\n \"name\": \"csharpsdktest8195\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:37:00.8939749Z\",\r\n \"duration\": \"PT36.1146931S\",\r\n \"correlationId\": \"82753aec-f6f2-4ada-9d7c-8e871ffea97e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//providers/Microsoft.Resources/deployments/csharpsdktest8195/operations?api-version=2019-07-01", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc2hhcnBzZGt0ZXN0ODE5NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c38fd3d9-207a-415f-81ab-c68651559774" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:37:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "1376dda2-eaa1-4343-ada7-f5180a2a0276" + ], + "x-ms-correlation-request-id": [ + "1376dda2-eaa1-4343-ada7-f5180a2a0276" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T223727Z:1376dda2-eaa1-4343-ada7-f5180a2a0276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195/operations/55C3F6D29BAA5001\",\r\n \"operationId\": \"55C3F6D29BAA5001\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:36:58.1338698Z\",\r\n \"duration\": \"PT28.3147437S\",\r\n \"trackingId\": \"1924866d-f5fd-4a2f-87d9-f1d3a746f208\",\r\n \"serviceRequestId\": \"740dbbcc-6e4f-4098-8b66-674c5268fcf1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/mg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"mg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195/operations/1861FE2FF8A6CC60\",\r\n \"operationId\": \"1861FE2FF8A6CC60\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:36:31.0682498Z\",\r\n \"duration\": \"PT1.2491237S\",\r\n \"trackingId\": \"ee64a4b6-3c57-4723-8b06-b4d4021096aa\",\r\n \"serviceRequestId\": \"3d595bcc-9661-4311-a014-d56f3d6b9b4b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\",\r\n \"resourceType\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"resourceName\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195/operations/591DE40DACECA9F1\",\r\n \"operationId\": \"591DE40DACECA9F1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:37:00.7211973Z\",\r\n \"duration\": \"PT30.9020712S\",\r\n \"trackingId\": \"0cc8ce7d-9bdb-4187-b017-0cbb712d6146\",\r\n \"serviceRequestId\": \"5230790f-3124-48b4-85e8-2b47f64958a1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/providers/Microsoft.Resources/deployments/sub-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"sub-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest8195/operations/08586364759006983376\",\r\n \"operationId\": \"08586364759006983376\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:37:00.8767461Z\",\r\n \"duration\": \"PT0.1053389S\",\r\n \"trackingId\": \"0e201f85-e339-480d-b3bb-645249ad4ec1\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "DeploymentWithScope_AtTenant": [ + "csharpsdktest8195" + ] + }, + "Variables": { + "SubscriptionId": "89ec4d1d-dcc7-4a3f-a701-0a5d074c8505" + } +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/TenantLevelDeployment.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/TenantLevelDeployment.json new file mode 100644 index 000000000000..f3620300b4ee --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/TenantLevelDeployment.json @@ -0,0 +1,429 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450/validate?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"variables\": {\r\n \"managementGroupScope\": \"[concat('Microsoft.Management/managementGroups/', parameters('managementGroupId'))]\",\r\n \"managementGroupFullyQualifiedId\": \"[concat('/providers/', variables('managementGroupScope'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"[parameters('roleDefinitionId')]\",\r\n \"apiVersion\": \"2018-07-01\",\r\n \"properties\": {\r\n \"roleName\": \"Tiano SDK Test Role\",\r\n \"description\": \"something\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"[variables('managementGroupFullyQualifiedId')]\"\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"mg-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"West US\",\r\n \"scope\": \"[variables('managementGroupScope')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sub-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US\",\r\n \"subscriptionId\": \"[parameters('subscriptionId')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"sdk-testrg\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US 2\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"value\": \"tiano-mgtest01\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "061361da-90c7-4ec4-b713-58497a27cae5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3898" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:21:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "89bbdc3f-3270-4659-9d00-05678281f7bc" + ], + "x-ms-correlation-request-id": [ + "89bbdc3f-3270-4659-9d00-05678281f7bc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222122Z:89bbdc3f-3270-4659-9d00-05678281f7bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1464" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450\",\r\n \"name\": \"csharpsdktest2450\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:21:21.5647756Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"89bbdc3f-3270-4659-9d00-05678281f7bc\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/mg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/providers/Microsoft.Resources/deployments/sub-nested\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"variables\": {\r\n \"managementGroupScope\": \"[concat('Microsoft.Management/managementGroups/', parameters('managementGroupId'))]\",\r\n \"managementGroupFullyQualifiedId\": \"[concat('/providers/', variables('managementGroupScope'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"[parameters('roleDefinitionId')]\",\r\n \"apiVersion\": \"2018-07-01\",\r\n \"properties\": {\r\n \"roleName\": \"Tiano SDK Test Role\",\r\n \"description\": \"something\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"[variables('managementGroupFullyQualifiedId')]\"\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"mg-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"West US\",\r\n \"scope\": \"[variables('managementGroupScope')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sub-nested\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US\",\r\n \"subscriptionId\": \"[parameters('subscriptionId')]\",\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"sdk-testrg\",\r\n \"apiVersion\": \"2019-07-01\",\r\n \"location\": \"East US 2\",\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"value\": \"tiano-mgtest01\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb8361e8-b082-4c1b-b72b-f767526c2d37" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3898" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:21:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Resources/deployments/csharpsdktest2450/operationStatuses/08586364768032509123?api-version=2019-07-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "1cd28730-875d-4568-8cae-133728e0c934" + ], + "x-ms-correlation-request-id": [ + "1cd28730-875d-4568-8cae-133728e0c934" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222124Z:1cd28730-875d-4568-8cae-133728e0c934" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450\",\r\n \"name\": \"csharpsdktest2450\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-08-06T22:21:23.7201875Z\",\r\n \"duration\": \"PT1.4934711S\",\r\n \"correlationId\": \"1cd28730-875d-4568-8cae-133728e0c934\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450/operationStatuses/08586364768032509123?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwL29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzY4MDMyNTA5MTIzP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:21:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "08bca4a0-5915-458c-a683-107e67671334" + ], + "x-ms-correlation-request-id": [ + "08bca4a0-5915-458c-a683-107e67671334" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222154Z:08bca4a0-5915-458c-a683-107e67671334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450/operationStatuses/08586364768032509123?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwL29wZXJhdGlvblN0YXR1c2VzLzA4NTg2MzY0NzY4MDMyNTA5MTIzP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:22:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "dd6e59a1-51e7-4a3e-ab0d-87ef16e4b4a5" + ], + "x-ms-correlation-request-id": [ + "dd6e59a1-51e7-4a3e-ab0d-87ef16e4b4a5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222224Z:dd6e59a1-51e7-4a3e-ab0d-87ef16e4b4a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:22:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1ef46b4e-9370-430d-bc82-f7d7041204f7" + ], + "x-ms-correlation-request-id": [ + "1ef46b4e-9370-430d-bc82-f7d7041204f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222224Z:1ef46b4e-9370-430d-bc82-f7d7041204f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450\",\r\n \"name\": \"csharpsdktest2450\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:22:01.5544449Z\",\r\n \"duration\": \"PT39.3277285S\",\r\n \"correlationId\": \"1cd28730-875d-4568-8cae-133728e0c934\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a600012-e42f-41b3-8b54-fb9dc76fb549" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:22:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "5c9a338e-3db3-47e9-9bd9-fac5c42d0f31" + ], + "x-ms-correlation-request-id": [ + "5c9a338e-3db3-47e9-9bd9-fac5c42d0f31" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222224Z:5c9a338e-3db3-47e9-9bd9-fac5c42d0f31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450\",\r\n \"name\": \"csharpsdktest2450\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"templateHash\": \"12707336783073826175\",\r\n \"parameters\": {\r\n \"managementGroupId\": {\r\n \"type\": \"String\",\r\n \"value\": \"tiano-mgtest01\"\r\n },\r\n \"subscriptionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"89ec4d1d-dcc7-4a3f-a701-0a5d074c8505\"\r\n },\r\n \"roleDefinitionId\": {\r\n \"type\": \"String\",\r\n \"value\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:22:01.5544449Z\",\r\n \"duration\": \"PT39.3277285S\",\r\n \"correlationId\": \"1cd28730-875d-4568-8cae-133728e0c934\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/resourceGroups/sdk-testrg\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/csharpsdktest2450/operations?api-version=2019-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3QyNDUwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57b32117-ebbe-4142-bdfe-99d2973f88e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 06 Aug 2019 22:22:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "3cba49bc-9a12-4ede-9a84-b8323ba9a807" + ], + "x-ms-correlation-request-id": [ + "3cba49bc-9a12-4ede-9a84-b8323ba9a807" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190806T222225Z:3cba49bc-9a12-4ede-9a84-b8323ba9a807" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2288" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450/operations/55C3F6D29BAA5001\",\r\n \"operationId\": \"55C3F6D29BAA5001\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:22:01.434554Z\",\r\n \"duration\": \"PT34.0685295S\",\r\n \"trackingId\": \"d41ae2d7-f781-4bcf-a23f-b4e05735159d\",\r\n \"serviceRequestId\": \"a278e85e-2671-4f95-a76c-8bdd3b76293c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/mg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"mg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450/operations/591DE40DACECA9F1\",\r\n \"operationId\": \"591DE40DACECA9F1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:21:52.762146Z\",\r\n \"duration\": \"PT25.3961215S\",\r\n \"trackingId\": \"01784f91-d1d0-47e0-8eaf-47788888ce2a\",\r\n \"serviceRequestId\": \"4c2f5803-fd47-4d52-8c0d-6308950afeec\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/89ec4d1d-dcc7-4a3f-a701-0a5d074c8505/providers/Microsoft.Resources/deployments/sub-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"sub-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450/operations/1861FE2FF8A6CC60\",\r\n \"operationId\": \"1861FE2FF8A6CC60\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:21:28.5517748Z\",\r\n \"duration\": \"PT1.1857503S\",\r\n \"trackingId\": \"b11e355f-0c2d-408c-9691-d93d416bbd4e\",\r\n \"serviceRequestId\": \"fc624a7d-aae6-4ec8-878f-d0585bf937a4\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/0cb07228-4614-4814-ac1a-c4e39793ce59\",\r\n \"resourceType\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"resourceName\": \"0cb07228-4614-4814-ac1a-c4e39793ce59\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/csharpsdktest2450/operations/08586364768032509123\",\r\n \"operationId\": \"08586364768032509123\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-08-06T22:22:01.5360585Z\",\r\n \"duration\": \"PT0.0692769S\",\r\n \"trackingId\": \"d4af9cb1-22d8-42a8-ad1b-1adb80fa2f17\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "TenantLevelDeployment": [ + "csharpsdktest2450" + ] + }, + "Variables": { + "SubscriptionId": "89ec4d1d-dcc7-4a3f-a701-0a5d074c8505" + } +} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Indexers/Models/FieldMappingFunction.Customization.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Indexers/Models/FieldMappingFunction.Customization.cs index 59bf3accf335..e8e320bae0bb 100644 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Indexers/Models/FieldMappingFunction.Customization.cs +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Indexers/Models/FieldMappingFunction.Customization.cs @@ -44,6 +44,29 @@ public static FieldMappingFunction Base64Encode(bool useHttpServerUtilityUrlToke [nameof(useHttpServerUtilityUrlTokenEncode)] = useHttpServerUtilityUrlTokenEncode }); + /// + /// Creates a field mapping function that performs a simple URL-safe encoding of the input string, + /// using UTF-8 encoding format. + /// + /// + /// Sample use case: This field mapping function can be used as an alternative to Base64Encode if only the URL + /// unsafe characters of a key field need to be safely converted, while other characters can remain as-is. + /// + /// A new field mapping function + public static FieldMappingFunction UrlEncode() => new FieldMappingFunction("urlEncode"); + + /// + /// Creates a field mapping function that performs url decoding of the input string. It assumes that the input + /// string has been url decoded with UTF-8 encoding format. + /// + /// + /// Sample use case: Some clients that try to update blob custom metadata (which need to be ASCII-encoded) might + /// choose to URL encode the data. To ingest that custom metadata and make search meaningful, the URL decode + /// field mapping function can be used while populating the search index. + /// + /// A new field mapping function + public static FieldMappingFunction UrlDecode() => new FieldMappingFunction("urlDecode"); + /// /// Creates a field mapping function that performs Base64 decoding of the input string. The input is assumed /// to a URL-safe Base64-encoded string. diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/EntityRecognitionSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/EntityRecognitionSkillLanguage.cs deleted file mode 100644 index 22586f0ef396..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/EntityRecognitionSkillLanguage.cs +++ /dev/null @@ -1,107 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of EntityRecognitionSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct EntityRecognitionSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "de" (for German) - /// - public static readonly EntityRecognitionSkillLanguage De = new EntityRecognitionSkillLanguage("de"); - - /// - /// Indicates language code "en" (for English) - /// - public static readonly EntityRecognitionSkillLanguage En = new EntityRecognitionSkillLanguage("en"); - - /// - /// Indicates language code "es" (for Spanish) - /// - public static readonly EntityRecognitionSkillLanguage Es = new EntityRecognitionSkillLanguage("es"); - - /// - /// Indicates language code "fr" (for French) - /// - public static readonly EntityRecognitionSkillLanguage Fr = new EntityRecognitionSkillLanguage("fr"); - - /// - /// Indicates language code "it" (for Italian) - /// - public static readonly EntityRecognitionSkillLanguage It = new EntityRecognitionSkillLanguage("it"); - - private EntityRecognitionSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to EntityRecognitionSkillLanguage. - /// - /// string to convert. - /// The string as a EntityRecognitionSkillLanguage. - public static implicit operator EntityRecognitionSkillLanguage(string value) => new EntityRecognitionSkillLanguage(value); - - /// - /// Defines explicit conversion from EntityRecognitionSkillLanguage to string. - /// - /// EntityRecognitionSkillLanguage to convert. - /// The EntityRecognitionSkillLanguage as a string. - public static explicit operator string(EntityRecognitionSkillLanguage language) => language.ToString(); - - /// - /// Compares two EntityRecognitionSkillLanguage values for equality. - /// - /// The first EntityRecognitionSkillLanguage to compare. - /// The second EntityRecognitionSkillLanguage to compare. - /// true if the EntityRecognitionSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(EntityRecognitionSkillLanguage lhs, EntityRecognitionSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two EntityRecognitionSkillLanguage values for inequality. - /// - /// The first EntityRecognitionSkillLanguage to compare. - /// The second EntityRecognitionSkillLanguage to compare. - /// true if the EntityRecognitionSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(EntityRecognitionSkillLanguage lhs, EntityRecognitionSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the EntityRecognitionSkillLanguage for equality with another EntityRecognitionSkillLanguage. - /// - /// The EntityRecognitionSkillLanguage with which to compare. - /// true if the EntityRecognitionSkillLanguage objects are equal; otherwise, false. - public bool Equals(EntityRecognitionSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is EntityRecognitionSkillLanguage ? Equals((EntityRecognitionSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the EntityRecognitionSkillLanguage. - /// - /// The EntityRecognitionSkillLanguage as a string. - public override string ToString() => _value; - } -} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs deleted file mode 100644 index dd6e16bffaa1..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of ImageAnalysisSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct ImageAnalysisSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "en" (for English) - /// - public static readonly ImageAnalysisSkillLanguage En = new ImageAnalysisSkillLanguage("en"); - - /// - /// Indicates language code "zh" (for Simplified Chinese) - /// - public static readonly ImageAnalysisSkillLanguage Zh = new ImageAnalysisSkillLanguage("zh"); - - private ImageAnalysisSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to ImageAnalysisSkillLanguage. - /// - /// string to convert. - /// The string as a ImageAnalysisSkillLanguage. - public static implicit operator ImageAnalysisSkillLanguage(string language) => new ImageAnalysisSkillLanguage(language); - - /// - /// Defines explicit conversion from ImageAnalysisSkillLanguage to string. - /// - /// ImageAnalysisSkillLanguage to convert. - /// The ImageAnalysisSkillLanguage as a string. - public static explicit operator string(ImageAnalysisSkillLanguage language) => language.ToString(); - - /// - /// Compares two ImageAnalysisSkillLanguage values for equality. - /// - /// The first ImageAnalysisSkillLanguage to compare. - /// The second ImageAnalysisSkillLanguage to compare. - /// true if the ImageAnalysisSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(ImageAnalysisSkillLanguage lhs, ImageAnalysisSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two ImageAnalysisSkillLanguage values for inequality. - /// - /// The first ImageAnalysisSkillLanguage to compare. - /// The second ImageAnalysisSkillLanguage to compare. - /// true if the ImageAnalysisSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(ImageAnalysisSkillLanguage lhs, ImageAnalysisSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the ImageAnalysisSkillLanguage for equality with another ImageAnalysisSkillLanguage. - /// - /// The ImageAnalysisSkillLanguage with which to compare. - /// true if the ImageAnalysisSkillLanguage objects are equal; otherwise, false. - public bool Equals(ImageAnalysisSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is ImageAnalysisSkillLanguage ? Equals((ImageAnalysisSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the ImageAnalysisSkillLanguage. - /// - /// The ImageAnalysisSkillLanguage as a string. - public override string ToString() => _value; - } -} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs deleted file mode 100644 index 3240cdd063ef..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs +++ /dev/null @@ -1,162 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of KeyPhraseExtractionSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct KeyPhraseExtractionSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "da" (for Danish) - /// - public static readonly KeyPhraseExtractionSkillLanguage Da = new KeyPhraseExtractionSkillLanguage("da"); - - /// - /// Indicates language code "nl" (for Dutch) - /// - public static readonly KeyPhraseExtractionSkillLanguage Nl = new KeyPhraseExtractionSkillLanguage("nl"); - - /// - /// Indicates language code "en" (for English) - /// - public static readonly KeyPhraseExtractionSkillLanguage En = new KeyPhraseExtractionSkillLanguage("en"); - - /// - /// Indicates language code "fi" (for Finnish) - /// - public static readonly KeyPhraseExtractionSkillLanguage Fi = new KeyPhraseExtractionSkillLanguage("fi"); - - /// - /// Indicates language code "fr" (for French) - /// - public static readonly KeyPhraseExtractionSkillLanguage Fr = new KeyPhraseExtractionSkillLanguage("fr"); - - /// - /// Indicates language code "de" (for German) - /// - public static readonly KeyPhraseExtractionSkillLanguage De = new KeyPhraseExtractionSkillLanguage("de"); - - /// - /// Indicates language code "it" (for Italian) - /// - public static readonly KeyPhraseExtractionSkillLanguage It = new KeyPhraseExtractionSkillLanguage("it"); - - /// - /// Indicates language code "ja" (for Japanese) - /// - public static readonly KeyPhraseExtractionSkillLanguage Ja = new KeyPhraseExtractionSkillLanguage("ja"); - - /// - /// Indicates language code "ko" (for Korean) - /// - public static readonly KeyPhraseExtractionSkillLanguage Ko = new KeyPhraseExtractionSkillLanguage("ko"); - - /// - /// Indicates language code "no" (for Norwegian) - /// - public static readonly KeyPhraseExtractionSkillLanguage No = new KeyPhraseExtractionSkillLanguage("no"); - - /// - /// Indicates language code "pl" (for Polish) - /// - public static readonly KeyPhraseExtractionSkillLanguage Pl = new KeyPhraseExtractionSkillLanguage("pl"); - - /// - /// Indicates language code "pt-PT" (for Portuguese (Portugal)) - /// - public static readonly KeyPhraseExtractionSkillLanguage PtPt = new KeyPhraseExtractionSkillLanguage("pt-PT"); - - /// - /// Indicates language code "pt-BR" (for Portuguese (Brazil)) - /// - public static readonly KeyPhraseExtractionSkillLanguage PtBr = new KeyPhraseExtractionSkillLanguage("pt-BR"); - - /// - /// Indicates language code "ru" (for Russian) - /// - public static readonly KeyPhraseExtractionSkillLanguage Ru = new KeyPhraseExtractionSkillLanguage("ru"); - - /// - /// Indicates language code "es" (for Spanish) - /// - public static readonly KeyPhraseExtractionSkillLanguage Es = new KeyPhraseExtractionSkillLanguage("es"); - - /// - /// Indicates language code "sv" (for Swedish) - /// - public static readonly KeyPhraseExtractionSkillLanguage Sv = new KeyPhraseExtractionSkillLanguage("sv"); - - private KeyPhraseExtractionSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to KeyPhraseExtractionSkillLanguage. - /// - /// string to convert. - /// The string as a KeyPhraseExtractionSkillLanguage. - public static implicit operator KeyPhraseExtractionSkillLanguage(string language) => new KeyPhraseExtractionSkillLanguage(language); - - /// - /// Defines explicit conversion from KeyPhraseExtractionSkillLanguage to string. - /// - /// KeyPhraseExtractionSkillLanguage to convert. - /// The KeyPhraseExtractionSkillLanguage as a string. - public static explicit operator string(KeyPhraseExtractionSkillLanguage language) => language.ToString(); - - /// - /// Compares two KeyPhraseExtractionSkillLanguage values for equality. - /// - /// The first KeyPhraseExtractionSkillLanguage to compare. - /// The second KeyPhraseExtractionSkillLanguage to compare. - /// true if the KeyPhraseExtractionSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(KeyPhraseExtractionSkillLanguage lhs, KeyPhraseExtractionSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two KeyPhraseExtractionSkillLanguage values for inequality. - /// - /// The first KeyPhraseExtractionSkillLanguage to compare. - /// The second KeyPhraseExtractionSkillLanguage to compare. - /// true if the KeyPhraseExtractionSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(KeyPhraseExtractionSkillLanguage lhs, KeyPhraseExtractionSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the KeyPhraseExtractionSkillLanguage for equality with another KeyPhraseExtractionSkillLanguage. - /// - /// The KeyPhraseExtractionSkillLanguage with which to compare. - /// true if the KeyPhraseExtractionSkillLanguage objects are equal; otherwise, false. - public bool Equals(KeyPhraseExtractionSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is KeyPhraseExtractionSkillLanguage ? Equals((KeyPhraseExtractionSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the KeyPhraseExtractionSkillLanguage. - /// - /// The KeyPhraseExtractionSkillLanguage as a string. - public override string ToString() => _value; - } -} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/OcrSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/OcrSkillLanguage.cs deleted file mode 100644 index efe8fa782707..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/OcrSkillLanguage.cs +++ /dev/null @@ -1,213 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of OcrSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct OcrSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "zh-Hans" (for Chinese Simplified) - /// - public static readonly OcrSkillLanguage ZhHans = new OcrSkillLanguage("zh-Hans"); - - /// - /// Indicates language code "zh-Hant" (for Chinese Traditional) - /// - public static readonly OcrSkillLanguage ZhHant = new OcrSkillLanguage("zh-Hant"); - - /// - /// Indicates language code "cs" (for Czech) - /// - public static readonly OcrSkillLanguage Cs = new OcrSkillLanguage("cs"); - - /// - /// Indicates language code "da" (for Danish) - /// - public static readonly OcrSkillLanguage Da = new OcrSkillLanguage("da"); - - /// - /// Indicates language code "nl" (for Dutch) - /// - public static readonly OcrSkillLanguage Nl = new OcrSkillLanguage("nl"); - - /// - /// Indicates language code "en" (for English) - /// - public static readonly OcrSkillLanguage En = new OcrSkillLanguage("en"); - - /// - /// Indicates language code "fi" (for Finnish) - /// - public static readonly OcrSkillLanguage Fi = new OcrSkillLanguage("fi"); - - /// - /// Indicates language code "fr" (for French) - /// - public static readonly OcrSkillLanguage Fr = new OcrSkillLanguage("fr"); - - /// - /// Indicates language code "de" (for German) - /// - public static readonly OcrSkillLanguage De = new OcrSkillLanguage("de"); - - /// - /// Indicates language code "el" (for Greek) - /// - public static readonly OcrSkillLanguage El = new OcrSkillLanguage("el"); - - /// - /// Indicates language code "hu" (for Hungarian) - /// - public static readonly OcrSkillLanguage Hu = new OcrSkillLanguage("hu"); - - /// - /// Indicates language code "it" (for Italian) - /// - public static readonly OcrSkillLanguage It = new OcrSkillLanguage("it"); - - /// - /// Indicates language code "ja" (for Japanese) - /// - public static readonly OcrSkillLanguage Ja = new OcrSkillLanguage("ja"); - - /// - /// Indicates language code "ko" (for Korean) - /// - public static readonly OcrSkillLanguage Ko = new OcrSkillLanguage("ko"); - - /// - /// Indicates language code "nb" (for Norwegian) - /// - public static readonly OcrSkillLanguage No = new OcrSkillLanguage("nb"); - - /// - /// Indicates language code "pl" (for Polish) - /// - public static readonly OcrSkillLanguage Pl = new OcrSkillLanguage("pl"); - - /// - /// Indicates language code "pt" (for Portuguese) - /// - public static readonly OcrSkillLanguage Pt = new OcrSkillLanguage("pt"); - - /// - /// Indicates language code "ru" (for Russian) - /// - public static readonly OcrSkillLanguage Ru = new OcrSkillLanguage("ru"); - - /// - /// Indicates language code "es" (for Spanish) - /// - public static readonly OcrSkillLanguage Es = new OcrSkillLanguage("es"); - - /// - /// Indicates language code "sv" (for Swedish) - /// - public static readonly OcrSkillLanguage Sv = new OcrSkillLanguage("sv"); - - /// - /// Indicates language code "tr" (for Turkish) - /// - public static readonly OcrSkillLanguage Tr = new OcrSkillLanguage("tr"); - - /// - /// Indicates language code "ar" (for Arabic) - /// - public static readonly OcrSkillLanguage Ar = new OcrSkillLanguage("ar"); - - /// - /// Indicates language code "ro" (for Romanian) - /// - public static readonly OcrSkillLanguage Ro = new OcrSkillLanguage("ro"); - - /// - /// Indicates language code "sr-Cyrl" (for Serbian Cyrillic) - /// - public static readonly OcrSkillLanguage SrCyrl = new OcrSkillLanguage("sr-Cyrl"); - - /// - /// Indicates language code "sr-Latn" (for Serbian Latin) - /// - public static readonly OcrSkillLanguage SrLatn = new OcrSkillLanguage("sr-Latn"); - - /// - /// Indicates language code "sk" (for Slovak) - /// - public static readonly OcrSkillLanguage Sk = new OcrSkillLanguage("sk"); - - private OcrSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to OcrSkillLanguage. - /// - /// string to convert. - /// The string as a OcrSkillLanguage. - public static implicit operator OcrSkillLanguage(string language) => new OcrSkillLanguage(language); - - /// - /// Defines explicit conversion from OcrSkillLanguage to string. - /// - /// OcrSkillLanguage to convert. - /// The OcrSkillLanguage as a string. - public static explicit operator string(OcrSkillLanguage language) => language.ToString(); - - /// - /// Compares two OcrSkillLanguage values for equality. - /// - /// The first OcrSkillLanguage to compare. - /// The second OcrSkillLanguage to compare. - /// true if the OcrSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(OcrSkillLanguage lhs, OcrSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two OcrSkillLanguage values for inequality. - /// - /// The first OcrSkillLanguage to compare. - /// The second OcrSkillLanguage to compare. - /// true if the OcrSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(OcrSkillLanguage lhs, OcrSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the OcrSkillLanguage for equality with another OcrSkillLanguage. - /// - /// The OcrSkillLanguage with which to compare. - /// true if the OcrSkillLanguage objects are equal; otherwise, false. - public bool Equals(OcrSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is OcrSkillLanguage ? Equals((OcrSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the OcrSkillLanguage. - /// - /// The OcrSkillLanguage as a string. - public override string ToString() => _value; - } -} - diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SentimentSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SentimentSkillLanguage.cs deleted file mode 100644 index 7553a4a33477..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SentimentSkillLanguage.cs +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of SentimentSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct SentimentSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "da" (for Danish) - /// - public static readonly SentimentSkillLanguage Da = new SentimentSkillLanguage("da"); - - /// - /// Indicates language code "nl" (for Dutch) - /// - public static readonly SentimentSkillLanguage Nl = new SentimentSkillLanguage("nl"); - - /// - /// Indicates language code "en" (for English) - /// - public static readonly SentimentSkillLanguage En = new SentimentSkillLanguage("en"); - - /// - /// Indicates language code "fi" (for Finnish) - /// - public static readonly SentimentSkillLanguage Fi = new SentimentSkillLanguage("fi"); - - /// - /// Indicates language code "fr" (for French) - /// - public static readonly SentimentSkillLanguage Fr = new SentimentSkillLanguage("fr"); - - /// - /// Indicates language code "de" (for German) - /// - public static readonly SentimentSkillLanguage De = new SentimentSkillLanguage("de"); - - /// - /// Indicates language code "el" (for Greek) - /// - public static readonly SentimentSkillLanguage El = new SentimentSkillLanguage("el"); - - /// - /// Indicates language code "it" (for Italian) - /// - public static readonly SentimentSkillLanguage It = new SentimentSkillLanguage("it"); - - /// - /// Indicates language code "no" (for Norwegian) - /// - public static readonly SentimentSkillLanguage No = new SentimentSkillLanguage("no"); - - /// - /// Indicates language code "pl" (for Polish) - /// - public static readonly SentimentSkillLanguage Pl = new SentimentSkillLanguage("pl"); - - /// - /// Indicates language code "pt-PT" (for Portuguese) - /// - public static readonly SentimentSkillLanguage PtPt = new SentimentSkillLanguage("pt-PT"); - - /// - /// Indicates language code "ru" (for Russian) - /// - public static readonly SentimentSkillLanguage Ru = new SentimentSkillLanguage("ru"); - - /// - /// Indicates language code "es" (for Spanish) - /// - public static readonly SentimentSkillLanguage Es = new SentimentSkillLanguage("es"); - - /// - /// Indicates language code "sv" (for Swedish) - /// - public static readonly SentimentSkillLanguage Sv = new SentimentSkillLanguage("sv"); - - /// - /// Indicates language code "tr" (for Turkish) - /// - public static readonly SentimentSkillLanguage Tr = new SentimentSkillLanguage("tr"); - - private SentimentSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to SentimentSkillLanguage. - /// - /// string to convert. - /// The string as a SentimentSkillLanguage. - public static implicit operator SentimentSkillLanguage(string language) => new SentimentSkillLanguage(language); - - /// - /// Defines explicit conversion from SentimentSkillLanguage to string. - /// - /// SentimentSkillLanguage to convert. - /// The SentimentSkillLanguage as a string. - public static explicit operator string(SentimentSkillLanguage language) => language.ToString(); - - /// - /// Compares two SentimentSkillLanguage values for equality. - /// - /// The first SentimentSkillLanguage to compare. - /// The second SentimentSkillLanguage to compare. - /// true if the SentimentSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(SentimentSkillLanguage lhs, SentimentSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two SentimentSkillLanguage values for inequality. - /// - /// The first SentimentSkillLanguage to compare. - /// The second SentimentSkillLanguage to compare. - /// true if the SentimentSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(SentimentSkillLanguage lhs, SentimentSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the SentimentSkillLanguage for equality with another SentimentSkillLanguage. - /// - /// The SentimentSkillLanguage with which to compare. - /// true if the SentimentSkillLanguage objects are equal; otherwise, false. - public bool Equals(SentimentSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is SentimentSkillLanguage ? Equals((SentimentSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the SentimentSkillLanguage. - /// - /// The SentimentSkillLanguage as a string. - public override string ToString() => _value; - } -} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SplitSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SplitSkillLanguage.cs deleted file mode 100644 index 76478d8a103f..000000000000 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Customizations/Skillsets/Models/SplitSkillLanguage.cs +++ /dev/null @@ -1,128 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -namespace Microsoft.Azure.Search.Models -{ - using System; - using Microsoft.Azure.Search.Common; - using Newtonsoft.Json; - using Serialization; - - /// - /// Defines the format of SplitSkill supported language codes. - /// - [JsonConverter(typeof(ExtensibleEnumConverter))] - public struct SplitSkillLanguage : IEquatable - { - private readonly string _value; - - /// - /// Indicates language code "da" (for Danish) - /// - public static readonly SplitSkillLanguage Da = new SplitSkillLanguage("da"); - - /// - /// Indicates language code "de" (for German) - /// - public static readonly SplitSkillLanguage De = new SplitSkillLanguage("de"); - - /// - /// Indicates language code "en" (for English) - /// - public static readonly SplitSkillLanguage En = new SplitSkillLanguage("en"); - - /// - /// Indicates language code "es" (for Spanish) - /// - public static readonly SplitSkillLanguage Es = new SplitSkillLanguage("es"); - - /// - /// Indicates language code "fi" (for Finnish) - /// - public static readonly SplitSkillLanguage Fi = new SplitSkillLanguage("fi"); - - /// - /// Indicates language code "fr" (for French) - /// - public static readonly SplitSkillLanguage Fr = new SplitSkillLanguage("fr"); - - /// - /// Indicates language code "it" (for Italian) - /// - public static readonly SplitSkillLanguage It = new SplitSkillLanguage("it"); - - /// - /// Indicates language code "ko" (for Korean) - /// - public static readonly SplitSkillLanguage Ko = new SplitSkillLanguage("ko"); - - /// - /// Indicates language code "pt" (for Portuguese) - /// - public static readonly SplitSkillLanguage Pt = new SplitSkillLanguage("pt"); - - private SplitSkillLanguage(string language) - { - Throw.IfArgumentNull(language, nameof(language)); - _value = language; - } - - /// - /// Defines implicit conversion from string to SplitSkillLanguage. - /// - /// string to convert. - /// The string as a SplitSkillLanguage. - public static implicit operator SplitSkillLanguage(string language) => new SplitSkillLanguage(language); - - /// - /// Defines explicit conversion from SplitSkillLanguage to string. - /// - /// SplitSkillLanguage to convert. - /// The SplitSkillLanguage as a string. - public static explicit operator string(SplitSkillLanguage language) => language.ToString(); - - /// - /// Compares two SplitSkillLanguage values for equality. - /// - /// The first SplitSkillLanguage to compare. - /// The second SplitSkillLanguage to compare. - /// true if the SplitSkillLanguage objects are equal or are both null; false otherwise. - public static bool operator ==(SplitSkillLanguage lhs, SplitSkillLanguage rhs) => Equals(lhs, rhs); - - /// - /// Compares two SplitSkillLanguage values for inequality. - /// - /// The first SplitSkillLanguage to compare. - /// The second SplitSkillLanguage to compare. - /// true if the SplitSkillLanguage objects are not equal; false otherwise. - public static bool operator !=(SplitSkillLanguage lhs, SplitSkillLanguage rhs) => !Equals(lhs, rhs); - - /// - /// Compares the SplitSkillLanguage for equality with another SplitSkillLanguage. - /// - /// The SplitSkillLanguage with which to compare. - /// true if the SplitSkillLanguage objects are equal; otherwise, false. - public bool Equals(SplitSkillLanguage other) => _value == other._value; - - /// - /// Determines whether the specified object is equal to the current object. - /// - /// The object to compare with the current object. - /// true if the specified object is equal to the current object; otherwise, false. - public override bool Equals(object obj) => obj is SplitSkillLanguage ? Equals((SplitSkillLanguage)obj) : false; - - /// - /// Serves as the default hash function. - /// - /// A hash code for the current object. - public override int GetHashCode() => _value.GetHashCode(); - - /// - /// Returns a string representation of the SplitSkillLanguage. - /// - /// The SplitSkillLanguage as a string. - public override string ToString() => _value; - } -} - diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ConditionalSkill.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ConditionalSkill.cs new file mode 100644 index 000000000000..69c5f3081952 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ConditionalSkill.cs @@ -0,0 +1,71 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that enables scenarios that require a Boolean operation to + /// determine the data to assign to an output. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Util.ConditionalSkill")] + public partial class ConditionalSkill : Skill + { + /// + /// Initializes a new instance of the ConditionalSkill class. + /// + public ConditionalSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ConditionalSkill class. + /// + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). The default is /document. + public ConditionalSkill(IList inputs, IList outputs, string description = default(string), string context = default(string)) + : base(inputs, outputs, description, context) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/EntityRecognitionSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/EntityRecognitionSkillLanguage.cs new file mode 100644 index 000000000000..31829db9c90b --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/EntityRecognitionSkillLanguage.cs @@ -0,0 +1,78 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for EntityRecognitionSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum EntityRecognitionSkillLanguage + { + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "it")] + It + } + internal static class EntityRecognitionSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this EntityRecognitionSkillLanguage? value) + { + return value == null ? null : ((EntityRecognitionSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this EntityRecognitionSkillLanguage value) + { + switch( value ) + { + case EntityRecognitionSkillLanguage.De: + return "de"; + case EntityRecognitionSkillLanguage.En: + return "en"; + case EntityRecognitionSkillLanguage.Es: + return "es"; + case EntityRecognitionSkillLanguage.Fr: + return "fr"; + case EntityRecognitionSkillLanguage.It: + return "it"; + } + return null; + } + + internal static EntityRecognitionSkillLanguage? ParseEntityRecognitionSkillLanguage(this string value) + { + switch( value ) + { + case "de": + return EntityRecognitionSkillLanguage.De; + case "en": + return EntityRecognitionSkillLanguage.En; + case "es": + return EntityRecognitionSkillLanguage.Es; + case "fr": + return EntityRecognitionSkillLanguage.Fr; + case "it": + return EntityRecognitionSkillLanguage.It; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ImageAnalysisSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ImageAnalysisSkillLanguage.cs new file mode 100644 index 000000000000..0d1becb5b5b1 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/ImageAnalysisSkillLanguage.cs @@ -0,0 +1,60 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ImageAnalysisSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ImageAnalysisSkillLanguage + { + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "zh")] + Zh + } + internal static class ImageAnalysisSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this ImageAnalysisSkillLanguage? value) + { + return value == null ? null : ((ImageAnalysisSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ImageAnalysisSkillLanguage value) + { + switch( value ) + { + case ImageAnalysisSkillLanguage.En: + return "en"; + case ImageAnalysisSkillLanguage.Zh: + return "zh"; + } + return null; + } + + internal static ImageAnalysisSkillLanguage? ParseImageAnalysisSkillLanguage(this string value) + { + switch( value ) + { + case "en": + return ImageAnalysisSkillLanguage.En; + case "zh": + return ImageAnalysisSkillLanguage.Zh; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/InputFieldMappingEntry.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/InputFieldMappingEntry.cs index da353e5644cf..f36adfb50551 100644 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/InputFieldMappingEntry.cs +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/InputFieldMappingEntry.cs @@ -12,6 +12,8 @@ namespace Microsoft.Azure.Search.Models { using Microsoft.Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -32,10 +34,16 @@ public InputFieldMappingEntry() /// /// The name of the input. /// The source of the input. - public InputFieldMappingEntry(string name, string source) + /// The source context used for selecting + /// recursive inputs. + /// The recursive inputs used when creating a + /// complex type. + public InputFieldMappingEntry(string name, string source = default(string), string sourceContext = default(string), IList inputs = default(IList)) { Name = name; Source = source; + SourceContext = sourceContext; + Inputs = inputs; CustomInit(); } @@ -56,6 +64,20 @@ public InputFieldMappingEntry(string name, string source) [JsonProperty(PropertyName = "source")] public string Source { get; set; } + /// + /// Gets or sets the source context used for selecting recursive + /// inputs. + /// + [JsonProperty(PropertyName = "sourceContext")] + public string SourceContext { get; set; } + + /// + /// Gets or sets the recursive inputs used when creating a complex + /// type. + /// + [JsonProperty(PropertyName = "inputs")] + public IList Inputs { get; set; } + /// /// Validate the object. /// @@ -68,9 +90,15 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } - if (Source == null) + if (Inputs != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "Source"); + foreach (var element in Inputs) + { + if (element != null) + { + element.Validate(); + } + } } } } diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/KeyPhraseExtractionSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/KeyPhraseExtractionSkillLanguage.cs new file mode 100644 index 000000000000..ae3723e5b55a --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/KeyPhraseExtractionSkillLanguage.cs @@ -0,0 +1,144 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for KeyPhraseExtractionSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum KeyPhraseExtractionSkillLanguage + { + [EnumMember(Value = "da")] + Da, + [EnumMember(Value = "nl")] + Nl, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "fi")] + Fi, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "it")] + It, + [EnumMember(Value = "ja")] + Ja, + [EnumMember(Value = "ko")] + Ko, + [EnumMember(Value = "no")] + No, + [EnumMember(Value = "pl")] + Pl, + [EnumMember(Value = "pt-PT")] + PtPT, + [EnumMember(Value = "pt-BR")] + PtBR, + [EnumMember(Value = "ru")] + Ru, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "sv")] + Sv + } + internal static class KeyPhraseExtractionSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this KeyPhraseExtractionSkillLanguage? value) + { + return value == null ? null : ((KeyPhraseExtractionSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this KeyPhraseExtractionSkillLanguage value) + { + switch( value ) + { + case KeyPhraseExtractionSkillLanguage.Da: + return "da"; + case KeyPhraseExtractionSkillLanguage.Nl: + return "nl"; + case KeyPhraseExtractionSkillLanguage.En: + return "en"; + case KeyPhraseExtractionSkillLanguage.Fi: + return "fi"; + case KeyPhraseExtractionSkillLanguage.Fr: + return "fr"; + case KeyPhraseExtractionSkillLanguage.De: + return "de"; + case KeyPhraseExtractionSkillLanguage.It: + return "it"; + case KeyPhraseExtractionSkillLanguage.Ja: + return "ja"; + case KeyPhraseExtractionSkillLanguage.Ko: + return "ko"; + case KeyPhraseExtractionSkillLanguage.No: + return "no"; + case KeyPhraseExtractionSkillLanguage.Pl: + return "pl"; + case KeyPhraseExtractionSkillLanguage.PtPT: + return "pt-PT"; + case KeyPhraseExtractionSkillLanguage.PtBR: + return "pt-BR"; + case KeyPhraseExtractionSkillLanguage.Ru: + return "ru"; + case KeyPhraseExtractionSkillLanguage.Es: + return "es"; + case KeyPhraseExtractionSkillLanguage.Sv: + return "sv"; + } + return null; + } + + internal static KeyPhraseExtractionSkillLanguage? ParseKeyPhraseExtractionSkillLanguage(this string value) + { + switch( value ) + { + case "da": + return KeyPhraseExtractionSkillLanguage.Da; + case "nl": + return KeyPhraseExtractionSkillLanguage.Nl; + case "en": + return KeyPhraseExtractionSkillLanguage.En; + case "fi": + return KeyPhraseExtractionSkillLanguage.Fi; + case "fr": + return KeyPhraseExtractionSkillLanguage.Fr; + case "de": + return KeyPhraseExtractionSkillLanguage.De; + case "it": + return KeyPhraseExtractionSkillLanguage.It; + case "ja": + return KeyPhraseExtractionSkillLanguage.Ja; + case "ko": + return KeyPhraseExtractionSkillLanguage.Ko; + case "no": + return KeyPhraseExtractionSkillLanguage.No; + case "pl": + return KeyPhraseExtractionSkillLanguage.Pl; + case "pt-PT": + return KeyPhraseExtractionSkillLanguage.PtPT; + case "pt-BR": + return KeyPhraseExtractionSkillLanguage.PtBR; + case "ru": + return KeyPhraseExtractionSkillLanguage.Ru; + case "es": + return KeyPhraseExtractionSkillLanguage.Es; + case "sv": + return KeyPhraseExtractionSkillLanguage.Sv; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/OcrSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/OcrSkillLanguage.cs new file mode 100644 index 000000000000..c95745d1a29e --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/OcrSkillLanguage.cs @@ -0,0 +1,204 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for OcrSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum OcrSkillLanguage + { + [EnumMember(Value = "zh-Hans")] + ZhHans, + [EnumMember(Value = "zh-Hant")] + ZhHant, + [EnumMember(Value = "cs")] + Cs, + [EnumMember(Value = "da")] + Da, + [EnumMember(Value = "nl")] + Nl, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "fi")] + Fi, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "el")] + El, + [EnumMember(Value = "hu")] + Hu, + [EnumMember(Value = "it")] + It, + [EnumMember(Value = "ja")] + Ja, + [EnumMember(Value = "ko")] + Ko, + [EnumMember(Value = "nb")] + Nb, + [EnumMember(Value = "pl")] + Pl, + [EnumMember(Value = "pt")] + Pt, + [EnumMember(Value = "ru")] + Ru, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "sv")] + Sv, + [EnumMember(Value = "tr")] + Tr, + [EnumMember(Value = "ar")] + Ar, + [EnumMember(Value = "ro")] + Ro, + [EnumMember(Value = "sr-Cyrl")] + SrCyrl, + [EnumMember(Value = "sr-Latn")] + SrLatn, + [EnumMember(Value = "sk")] + Sk + } + internal static class OcrSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this OcrSkillLanguage? value) + { + return value == null ? null : ((OcrSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this OcrSkillLanguage value) + { + switch( value ) + { + case OcrSkillLanguage.ZhHans: + return "zh-Hans"; + case OcrSkillLanguage.ZhHant: + return "zh-Hant"; + case OcrSkillLanguage.Cs: + return "cs"; + case OcrSkillLanguage.Da: + return "da"; + case OcrSkillLanguage.Nl: + return "nl"; + case OcrSkillLanguage.En: + return "en"; + case OcrSkillLanguage.Fi: + return "fi"; + case OcrSkillLanguage.Fr: + return "fr"; + case OcrSkillLanguage.De: + return "de"; + case OcrSkillLanguage.El: + return "el"; + case OcrSkillLanguage.Hu: + return "hu"; + case OcrSkillLanguage.It: + return "it"; + case OcrSkillLanguage.Ja: + return "ja"; + case OcrSkillLanguage.Ko: + return "ko"; + case OcrSkillLanguage.Nb: + return "nb"; + case OcrSkillLanguage.Pl: + return "pl"; + case OcrSkillLanguage.Pt: + return "pt"; + case OcrSkillLanguage.Ru: + return "ru"; + case OcrSkillLanguage.Es: + return "es"; + case OcrSkillLanguage.Sv: + return "sv"; + case OcrSkillLanguage.Tr: + return "tr"; + case OcrSkillLanguage.Ar: + return "ar"; + case OcrSkillLanguage.Ro: + return "ro"; + case OcrSkillLanguage.SrCyrl: + return "sr-Cyrl"; + case OcrSkillLanguage.SrLatn: + return "sr-Latn"; + case OcrSkillLanguage.Sk: + return "sk"; + } + return null; + } + + internal static OcrSkillLanguage? ParseOcrSkillLanguage(this string value) + { + switch( value ) + { + case "zh-Hans": + return OcrSkillLanguage.ZhHans; + case "zh-Hant": + return OcrSkillLanguage.ZhHant; + case "cs": + return OcrSkillLanguage.Cs; + case "da": + return OcrSkillLanguage.Da; + case "nl": + return OcrSkillLanguage.Nl; + case "en": + return OcrSkillLanguage.En; + case "fi": + return OcrSkillLanguage.Fi; + case "fr": + return OcrSkillLanguage.Fr; + case "de": + return OcrSkillLanguage.De; + case "el": + return OcrSkillLanguage.El; + case "hu": + return OcrSkillLanguage.Hu; + case "it": + return OcrSkillLanguage.It; + case "ja": + return OcrSkillLanguage.Ja; + case "ko": + return OcrSkillLanguage.Ko; + case "nb": + return OcrSkillLanguage.Nb; + case "pl": + return OcrSkillLanguage.Pl; + case "pt": + return OcrSkillLanguage.Pt; + case "ru": + return OcrSkillLanguage.Ru; + case "es": + return OcrSkillLanguage.Es; + case "sv": + return OcrSkillLanguage.Sv; + case "tr": + return OcrSkillLanguage.Tr; + case "ar": + return OcrSkillLanguage.Ar; + case "ro": + return OcrSkillLanguage.Ro; + case "sr-Cyrl": + return OcrSkillLanguage.SrCyrl; + case "sr-Latn": + return OcrSkillLanguage.SrLatn; + case "sk": + return OcrSkillLanguage.Sk; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SentimentSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SentimentSkillLanguage.cs new file mode 100644 index 000000000000..2afd0f59241d --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SentimentSkillLanguage.cs @@ -0,0 +1,138 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SentimentSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SentimentSkillLanguage + { + [EnumMember(Value = "da")] + Da, + [EnumMember(Value = "nl")] + Nl, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "fi")] + Fi, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "el")] + El, + [EnumMember(Value = "it")] + It, + [EnumMember(Value = "no")] + No, + [EnumMember(Value = "pl")] + Pl, + [EnumMember(Value = "pt-PT")] + PtPT, + [EnumMember(Value = "ru")] + Ru, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "sv")] + Sv, + [EnumMember(Value = "tr")] + Tr + } + internal static class SentimentSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this SentimentSkillLanguage? value) + { + return value == null ? null : ((SentimentSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SentimentSkillLanguage value) + { + switch( value ) + { + case SentimentSkillLanguage.Da: + return "da"; + case SentimentSkillLanguage.Nl: + return "nl"; + case SentimentSkillLanguage.En: + return "en"; + case SentimentSkillLanguage.Fi: + return "fi"; + case SentimentSkillLanguage.Fr: + return "fr"; + case SentimentSkillLanguage.De: + return "de"; + case SentimentSkillLanguage.El: + return "el"; + case SentimentSkillLanguage.It: + return "it"; + case SentimentSkillLanguage.No: + return "no"; + case SentimentSkillLanguage.Pl: + return "pl"; + case SentimentSkillLanguage.PtPT: + return "pt-PT"; + case SentimentSkillLanguage.Ru: + return "ru"; + case SentimentSkillLanguage.Es: + return "es"; + case SentimentSkillLanguage.Sv: + return "sv"; + case SentimentSkillLanguage.Tr: + return "tr"; + } + return null; + } + + internal static SentimentSkillLanguage? ParseSentimentSkillLanguage(this string value) + { + switch( value ) + { + case "da": + return SentimentSkillLanguage.Da; + case "nl": + return SentimentSkillLanguage.Nl; + case "en": + return SentimentSkillLanguage.En; + case "fi": + return SentimentSkillLanguage.Fi; + case "fr": + return SentimentSkillLanguage.Fr; + case "de": + return SentimentSkillLanguage.De; + case "el": + return SentimentSkillLanguage.El; + case "it": + return SentimentSkillLanguage.It; + case "no": + return SentimentSkillLanguage.No; + case "pl": + return SentimentSkillLanguage.Pl; + case "pt-PT": + return SentimentSkillLanguage.PtPT; + case "ru": + return SentimentSkillLanguage.Ru; + case "es": + return SentimentSkillLanguage.Es; + case "sv": + return SentimentSkillLanguage.Sv; + case "tr": + return SentimentSkillLanguage.Tr; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SplitSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SplitSkillLanguage.cs new file mode 100644 index 000000000000..76f8932cea8a --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/SplitSkillLanguage.cs @@ -0,0 +1,102 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SplitSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SplitSkillLanguage + { + [EnumMember(Value = "da")] + Da, + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "fi")] + Fi, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "it")] + It, + [EnumMember(Value = "ko")] + Ko, + [EnumMember(Value = "pt")] + Pt + } + internal static class SplitSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this SplitSkillLanguage? value) + { + return value == null ? null : ((SplitSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SplitSkillLanguage value) + { + switch( value ) + { + case SplitSkillLanguage.Da: + return "da"; + case SplitSkillLanguage.De: + return "de"; + case SplitSkillLanguage.En: + return "en"; + case SplitSkillLanguage.Es: + return "es"; + case SplitSkillLanguage.Fi: + return "fi"; + case SplitSkillLanguage.Fr: + return "fr"; + case SplitSkillLanguage.It: + return "it"; + case SplitSkillLanguage.Ko: + return "ko"; + case SplitSkillLanguage.Pt: + return "pt"; + } + return null; + } + + internal static SplitSkillLanguage? ParseSplitSkillLanguage(this string value) + { + switch( value ) + { + case "da": + return SplitSkillLanguage.Da; + case "de": + return SplitSkillLanguage.De; + case "en": + return SplitSkillLanguage.En; + case "es": + return SplitSkillLanguage.Es; + case "fi": + return SplitSkillLanguage.Fi; + case "fr": + return SplitSkillLanguage.Fr; + case "it": + return SplitSkillLanguage.It; + case "ko": + return SplitSkillLanguage.Ko; + case "pt": + return SplitSkillLanguage.Pt; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkill.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkill.cs new file mode 100644 index 000000000000..19a82b09a77b --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkill.cs @@ -0,0 +1,145 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill to translate text from one language to another. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.TranslationSkill")] + public partial class TextTranslationSkill : Skill + { + /// + /// Initializes a new instance of the TextTranslationSkill class. + /// + public TextTranslationSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TextTranslationSkill class. + /// + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// The language code to translate + /// documents into for documents that don't specify the to language + /// explicitly. Possible values include: 'af', 'ar', 'bn', 'bs', 'bg', + /// 'yue', 'ca', 'zh-Hans', 'zh-Hant', 'hr', 'cs', 'da', 'nl', 'en', + /// 'et', 'fj', 'fil', 'fi', 'fr', 'de', 'el', 'ht', 'he', 'hi', 'mww', + /// 'hu', 'is', 'id', 'it', 'ja', 'sw', 'tlh', 'ko', 'lv', 'lt', 'mg', + /// 'ms', 'mt', 'nb', 'fa', 'pl', 'pt', 'otq', 'ro', 'ru', 'sm', + /// 'sr-Cyrl', 'sr-Latn', 'sk', 'sl', 'es', 'sv', 'ty', 'ta', 'te', + /// 'th', 'to', 'tr', 'uk', 'ur', 'vi', 'cy', 'yua' + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). The default is /document. + /// The language code to + /// translate documents from for documents that don't specify the from + /// language explicitly. Possible values include: 'af', 'ar', 'bn', + /// 'bs', 'bg', 'yue', 'ca', 'zh-Hans', 'zh-Hant', 'hr', 'cs', 'da', + /// 'nl', 'en', 'et', 'fj', 'fil', 'fi', 'fr', 'de', 'el', 'ht', 'he', + /// 'hi', 'mww', 'hu', 'is', 'id', 'it', 'ja', 'sw', 'tlh', 'ko', 'lv', + /// 'lt', 'mg', 'ms', 'mt', 'nb', 'fa', 'pl', 'pt', 'otq', 'ro', 'ru', + /// 'sm', 'sr-Cyrl', 'sr-Latn', 'sk', 'sl', 'es', 'sv', 'ty', 'ta', + /// 'te', 'th', 'to', 'tr', 'uk', 'ur', 'vi', 'cy', 'yua' + /// The language code to translate + /// documents from when neither the fromLanguageCode input nor the + /// defaultFromLanguageCode parameter are provided, and the automatic + /// language detection is unsuccessful. Default is en. Possible values + /// include: 'af', 'ar', 'bn', 'bs', 'bg', 'yue', 'ca', 'zh-Hans', + /// 'zh-Hant', 'hr', 'cs', 'da', 'nl', 'en', 'et', 'fj', 'fil', 'fi', + /// 'fr', 'de', 'el', 'ht', 'he', 'hi', 'mww', 'hu', 'is', 'id', 'it', + /// 'ja', 'sw', 'tlh', 'ko', 'lv', 'lt', 'mg', 'ms', 'mt', 'nb', 'fa', + /// 'pl', 'pt', 'otq', 'ro', 'ru', 'sm', 'sr-Cyrl', 'sr-Latn', 'sk', + /// 'sl', 'es', 'sv', 'ty', 'ta', 'te', 'th', 'to', 'tr', 'uk', 'ur', + /// 'vi', 'cy', 'yua' + public TextTranslationSkill(IList inputs, IList outputs, TextTranslationSkillLanguage defaultToLanguageCode, string description = default(string), string context = default(string), TextTranslationSkillLanguage? defaultFromLanguageCode = default(TextTranslationSkillLanguage?), TextTranslationSkillLanguage? suggestedFrom = default(TextTranslationSkillLanguage?)) + : base(inputs, outputs, description, context) + { + DefaultToLanguageCode = defaultToLanguageCode; + DefaultFromLanguageCode = defaultFromLanguageCode; + SuggestedFrom = suggestedFrom; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the language code to translate documents into for + /// documents that don't specify the to language explicitly. Possible + /// values include: 'af', 'ar', 'bn', 'bs', 'bg', 'yue', 'ca', + /// 'zh-Hans', 'zh-Hant', 'hr', 'cs', 'da', 'nl', 'en', 'et', 'fj', + /// 'fil', 'fi', 'fr', 'de', 'el', 'ht', 'he', 'hi', 'mww', 'hu', 'is', + /// 'id', 'it', 'ja', 'sw', 'tlh', 'ko', 'lv', 'lt', 'mg', 'ms', 'mt', + /// 'nb', 'fa', 'pl', 'pt', 'otq', 'ro', 'ru', 'sm', 'sr-Cyrl', + /// 'sr-Latn', 'sk', 'sl', 'es', 'sv', 'ty', 'ta', 'te', 'th', 'to', + /// 'tr', 'uk', 'ur', 'vi', 'cy', 'yua' + /// + [JsonProperty(PropertyName = "defaultToLanguageCode")] + public TextTranslationSkillLanguage DefaultToLanguageCode { get; set; } + + /// + /// Gets or sets the language code to translate documents from for + /// documents that don't specify the from language explicitly. Possible + /// values include: 'af', 'ar', 'bn', 'bs', 'bg', 'yue', 'ca', + /// 'zh-Hans', 'zh-Hant', 'hr', 'cs', 'da', 'nl', 'en', 'et', 'fj', + /// 'fil', 'fi', 'fr', 'de', 'el', 'ht', 'he', 'hi', 'mww', 'hu', 'is', + /// 'id', 'it', 'ja', 'sw', 'tlh', 'ko', 'lv', 'lt', 'mg', 'ms', 'mt', + /// 'nb', 'fa', 'pl', 'pt', 'otq', 'ro', 'ru', 'sm', 'sr-Cyrl', + /// 'sr-Latn', 'sk', 'sl', 'es', 'sv', 'ty', 'ta', 'te', 'th', 'to', + /// 'tr', 'uk', 'ur', 'vi', 'cy', 'yua' + /// + [JsonProperty(PropertyName = "defaultFromLanguageCode")] + public TextTranslationSkillLanguage? DefaultFromLanguageCode { get; set; } + + /// + /// Gets or sets the language code to translate documents from when + /// neither the fromLanguageCode input nor the defaultFromLanguageCode + /// parameter are provided, and the automatic language detection is + /// unsuccessful. Default is en. Possible values include: 'af', 'ar', + /// 'bn', 'bs', 'bg', 'yue', 'ca', 'zh-Hans', 'zh-Hant', 'hr', 'cs', + /// 'da', 'nl', 'en', 'et', 'fj', 'fil', 'fi', 'fr', 'de', 'el', 'ht', + /// 'he', 'hi', 'mww', 'hu', 'is', 'id', 'it', 'ja', 'sw', 'tlh', 'ko', + /// 'lv', 'lt', 'mg', 'ms', 'mt', 'nb', 'fa', 'pl', 'pt', 'otq', 'ro', + /// 'ru', 'sm', 'sr-Cyrl', 'sr-Latn', 'sk', 'sl', 'es', 'sv', 'ty', + /// 'ta', 'te', 'th', 'to', 'tr', 'uk', 'ur', 'vi', 'cy', 'yua' + /// + [JsonProperty(PropertyName = "suggestedFrom")] + public TextTranslationSkillLanguage? SuggestedFrom { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkillLanguage.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkillLanguage.cs new file mode 100644 index 000000000000..ce9f1fbbebe1 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/Models/TextTranslationSkillLanguage.cs @@ -0,0 +1,426 @@ +// +// 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.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TextTranslationSkillLanguage. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TextTranslationSkillLanguage + { + [EnumMember(Value = "af")] + Af, + [EnumMember(Value = "ar")] + Ar, + [EnumMember(Value = "bn")] + Bn, + [EnumMember(Value = "bs")] + Bs, + [EnumMember(Value = "bg")] + Bg, + [EnumMember(Value = "yue")] + Yue, + [EnumMember(Value = "ca")] + Ca, + [EnumMember(Value = "zh-Hans")] + ZhHans, + [EnumMember(Value = "zh-Hant")] + ZhHant, + [EnumMember(Value = "hr")] + Hr, + [EnumMember(Value = "cs")] + Cs, + [EnumMember(Value = "da")] + Da, + [EnumMember(Value = "nl")] + Nl, + [EnumMember(Value = "en")] + En, + [EnumMember(Value = "et")] + Et, + [EnumMember(Value = "fj")] + Fj, + [EnumMember(Value = "fil")] + Fil, + [EnumMember(Value = "fi")] + Fi, + [EnumMember(Value = "fr")] + Fr, + [EnumMember(Value = "de")] + De, + [EnumMember(Value = "el")] + El, + [EnumMember(Value = "ht")] + Ht, + [EnumMember(Value = "he")] + He, + [EnumMember(Value = "hi")] + Hi, + [EnumMember(Value = "mww")] + Mww, + [EnumMember(Value = "hu")] + Hu, + [EnumMember(Value = "is")] + Is, + [EnumMember(Value = "id")] + Id, + [EnumMember(Value = "it")] + It, + [EnumMember(Value = "ja")] + Ja, + [EnumMember(Value = "sw")] + Sw, + [EnumMember(Value = "tlh")] + Tlh, + [EnumMember(Value = "ko")] + Ko, + [EnumMember(Value = "lv")] + Lv, + [EnumMember(Value = "lt")] + Lt, + [EnumMember(Value = "mg")] + Mg, + [EnumMember(Value = "ms")] + Ms, + [EnumMember(Value = "mt")] + Mt, + [EnumMember(Value = "nb")] + Nb, + [EnumMember(Value = "fa")] + Fa, + [EnumMember(Value = "pl")] + Pl, + [EnumMember(Value = "pt")] + Pt, + [EnumMember(Value = "otq")] + Otq, + [EnumMember(Value = "ro")] + Ro, + [EnumMember(Value = "ru")] + Ru, + [EnumMember(Value = "sm")] + Sm, + [EnumMember(Value = "sr-Cyrl")] + SrCyrl, + [EnumMember(Value = "sr-Latn")] + SrLatn, + [EnumMember(Value = "sk")] + Sk, + [EnumMember(Value = "sl")] + Sl, + [EnumMember(Value = "es")] + Es, + [EnumMember(Value = "sv")] + Sv, + [EnumMember(Value = "ty")] + Ty, + [EnumMember(Value = "ta")] + Ta, + [EnumMember(Value = "te")] + Te, + [EnumMember(Value = "th")] + Th, + [EnumMember(Value = "to")] + To, + [EnumMember(Value = "tr")] + Tr, + [EnumMember(Value = "uk")] + Uk, + [EnumMember(Value = "ur")] + Ur, + [EnumMember(Value = "vi")] + Vi, + [EnumMember(Value = "cy")] + Cy, + [EnumMember(Value = "yua")] + Yua + } + internal static class TextTranslationSkillLanguageEnumExtension + { + internal static string ToSerializedValue(this TextTranslationSkillLanguage? value) + { + return value == null ? null : ((TextTranslationSkillLanguage)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this TextTranslationSkillLanguage value) + { + switch( value ) + { + case TextTranslationSkillLanguage.Af: + return "af"; + case TextTranslationSkillLanguage.Ar: + return "ar"; + case TextTranslationSkillLanguage.Bn: + return "bn"; + case TextTranslationSkillLanguage.Bs: + return "bs"; + case TextTranslationSkillLanguage.Bg: + return "bg"; + case TextTranslationSkillLanguage.Yue: + return "yue"; + case TextTranslationSkillLanguage.Ca: + return "ca"; + case TextTranslationSkillLanguage.ZhHans: + return "zh-Hans"; + case TextTranslationSkillLanguage.ZhHant: + return "zh-Hant"; + case TextTranslationSkillLanguage.Hr: + return "hr"; + case TextTranslationSkillLanguage.Cs: + return "cs"; + case TextTranslationSkillLanguage.Da: + return "da"; + case TextTranslationSkillLanguage.Nl: + return "nl"; + case TextTranslationSkillLanguage.En: + return "en"; + case TextTranslationSkillLanguage.Et: + return "et"; + case TextTranslationSkillLanguage.Fj: + return "fj"; + case TextTranslationSkillLanguage.Fil: + return "fil"; + case TextTranslationSkillLanguage.Fi: + return "fi"; + case TextTranslationSkillLanguage.Fr: + return "fr"; + case TextTranslationSkillLanguage.De: + return "de"; + case TextTranslationSkillLanguage.El: + return "el"; + case TextTranslationSkillLanguage.Ht: + return "ht"; + case TextTranslationSkillLanguage.He: + return "he"; + case TextTranslationSkillLanguage.Hi: + return "hi"; + case TextTranslationSkillLanguage.Mww: + return "mww"; + case TextTranslationSkillLanguage.Hu: + return "hu"; + case TextTranslationSkillLanguage.Is: + return "is"; + case TextTranslationSkillLanguage.Id: + return "id"; + case TextTranslationSkillLanguage.It: + return "it"; + case TextTranslationSkillLanguage.Ja: + return "ja"; + case TextTranslationSkillLanguage.Sw: + return "sw"; + case TextTranslationSkillLanguage.Tlh: + return "tlh"; + case TextTranslationSkillLanguage.Ko: + return "ko"; + case TextTranslationSkillLanguage.Lv: + return "lv"; + case TextTranslationSkillLanguage.Lt: + return "lt"; + case TextTranslationSkillLanguage.Mg: + return "mg"; + case TextTranslationSkillLanguage.Ms: + return "ms"; + case TextTranslationSkillLanguage.Mt: + return "mt"; + case TextTranslationSkillLanguage.Nb: + return "nb"; + case TextTranslationSkillLanguage.Fa: + return "fa"; + case TextTranslationSkillLanguage.Pl: + return "pl"; + case TextTranslationSkillLanguage.Pt: + return "pt"; + case TextTranslationSkillLanguage.Otq: + return "otq"; + case TextTranslationSkillLanguage.Ro: + return "ro"; + case TextTranslationSkillLanguage.Ru: + return "ru"; + case TextTranslationSkillLanguage.Sm: + return "sm"; + case TextTranslationSkillLanguage.SrCyrl: + return "sr-Cyrl"; + case TextTranslationSkillLanguage.SrLatn: + return "sr-Latn"; + case TextTranslationSkillLanguage.Sk: + return "sk"; + case TextTranslationSkillLanguage.Sl: + return "sl"; + case TextTranslationSkillLanguage.Es: + return "es"; + case TextTranslationSkillLanguage.Sv: + return "sv"; + case TextTranslationSkillLanguage.Ty: + return "ty"; + case TextTranslationSkillLanguage.Ta: + return "ta"; + case TextTranslationSkillLanguage.Te: + return "te"; + case TextTranslationSkillLanguage.Th: + return "th"; + case TextTranslationSkillLanguage.To: + return "to"; + case TextTranslationSkillLanguage.Tr: + return "tr"; + case TextTranslationSkillLanguage.Uk: + return "uk"; + case TextTranslationSkillLanguage.Ur: + return "ur"; + case TextTranslationSkillLanguage.Vi: + return "vi"; + case TextTranslationSkillLanguage.Cy: + return "cy"; + case TextTranslationSkillLanguage.Yua: + return "yua"; + } + return null; + } + + internal static TextTranslationSkillLanguage? ParseTextTranslationSkillLanguage(this string value) + { + switch( value ) + { + case "af": + return TextTranslationSkillLanguage.Af; + case "ar": + return TextTranslationSkillLanguage.Ar; + case "bn": + return TextTranslationSkillLanguage.Bn; + case "bs": + return TextTranslationSkillLanguage.Bs; + case "bg": + return TextTranslationSkillLanguage.Bg; + case "yue": + return TextTranslationSkillLanguage.Yue; + case "ca": + return TextTranslationSkillLanguage.Ca; + case "zh-Hans": + return TextTranslationSkillLanguage.ZhHans; + case "zh-Hant": + return TextTranslationSkillLanguage.ZhHant; + case "hr": + return TextTranslationSkillLanguage.Hr; + case "cs": + return TextTranslationSkillLanguage.Cs; + case "da": + return TextTranslationSkillLanguage.Da; + case "nl": + return TextTranslationSkillLanguage.Nl; + case "en": + return TextTranslationSkillLanguage.En; + case "et": + return TextTranslationSkillLanguage.Et; + case "fj": + return TextTranslationSkillLanguage.Fj; + case "fil": + return TextTranslationSkillLanguage.Fil; + case "fi": + return TextTranslationSkillLanguage.Fi; + case "fr": + return TextTranslationSkillLanguage.Fr; + case "de": + return TextTranslationSkillLanguage.De; + case "el": + return TextTranslationSkillLanguage.El; + case "ht": + return TextTranslationSkillLanguage.Ht; + case "he": + return TextTranslationSkillLanguage.He; + case "hi": + return TextTranslationSkillLanguage.Hi; + case "mww": + return TextTranslationSkillLanguage.Mww; + case "hu": + return TextTranslationSkillLanguage.Hu; + case "is": + return TextTranslationSkillLanguage.Is; + case "id": + return TextTranslationSkillLanguage.Id; + case "it": + return TextTranslationSkillLanguage.It; + case "ja": + return TextTranslationSkillLanguage.Ja; + case "sw": + return TextTranslationSkillLanguage.Sw; + case "tlh": + return TextTranslationSkillLanguage.Tlh; + case "ko": + return TextTranslationSkillLanguage.Ko; + case "lv": + return TextTranslationSkillLanguage.Lv; + case "lt": + return TextTranslationSkillLanguage.Lt; + case "mg": + return TextTranslationSkillLanguage.Mg; + case "ms": + return TextTranslationSkillLanguage.Ms; + case "mt": + return TextTranslationSkillLanguage.Mt; + case "nb": + return TextTranslationSkillLanguage.Nb; + case "fa": + return TextTranslationSkillLanguage.Fa; + case "pl": + return TextTranslationSkillLanguage.Pl; + case "pt": + return TextTranslationSkillLanguage.Pt; + case "otq": + return TextTranslationSkillLanguage.Otq; + case "ro": + return TextTranslationSkillLanguage.Ro; + case "ru": + return TextTranslationSkillLanguage.Ru; + case "sm": + return TextTranslationSkillLanguage.Sm; + case "sr-Cyrl": + return TextTranslationSkillLanguage.SrCyrl; + case "sr-Latn": + return TextTranslationSkillLanguage.SrLatn; + case "sk": + return TextTranslationSkillLanguage.Sk; + case "sl": + return TextTranslationSkillLanguage.Sl; + case "es": + return TextTranslationSkillLanguage.Es; + case "sv": + return TextTranslationSkillLanguage.Sv; + case "ty": + return TextTranslationSkillLanguage.Ty; + case "ta": + return TextTranslationSkillLanguage.Ta; + case "te": + return TextTranslationSkillLanguage.Te; + case "th": + return TextTranslationSkillLanguage.Th; + case "to": + return TextTranslationSkillLanguage.To; + case "tr": + return TextTranslationSkillLanguage.Tr; + case "uk": + return TextTranslationSkillLanguage.Uk; + case "ur": + return TextTranslationSkillLanguage.Ur; + case "vi": + return TextTranslationSkillLanguage.Vi; + case "cy": + return TextTranslationSkillLanguage.Cy; + case "yua": + return TextTranslationSkillLanguage.Yua; + } + return null; + } + } +} diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/SdkInfo_SearchServiceClient.cs b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/SdkInfo_SearchServiceClient.cs index c701347d433f..83e56aa96703 100644 --- a/sdk/search/Microsoft.Azure.Search.Service/src/Generated/SdkInfo_SearchServiceClient.cs +++ b/sdk/search/Microsoft.Azure.Search.Service/src/Generated/SdkInfo_SearchServiceClient.cs @@ -34,7 +34,7 @@ public static IEnumerable> ApiInfo_SearchServiceCl public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\src\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "39c47bb0623a056d760175c63688d688e0020faa"; + public static readonly String GithubCommidId = "397e41997764b35729dd4f39ec80a0f98c4456eb"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/search/Microsoft.Azure.Search.Service/src/generate.ps1 b/sdk/search/Microsoft.Azure.Search.Service/src/generate.ps1 index c3e5f697759e..a5cc99f4b5ce 100644 --- a/sdk/search/Microsoft.Azure.Search.Service/src/generate.ps1 +++ b/sdk/search/Microsoft.Azure.Search.Service/src/generate.ps1 @@ -54,12 +54,10 @@ Remove-Item -Force "$generateFolder\Models\CharFilterName.cs" Remove-Item -Force "$generateFolder\Models\RegexFlags.cs" Remove-Item -Force "$generateFolder\Models\DataType.cs" Remove-Item -Force "$generateFolder\Models\DataSourceType.cs" -Remove-Item -Force "$generateFolder\Models\SentimentSkillLanguage.cs" -Remove-Item -Force "$generateFolder\Models\KeyPhraseExtractionSkillLanguage.cs" -Remove-Item -Force "$generateFolder\Models\OcrSkillLanguage.cs" -Remove-Item -Force "$generateFolder\Models\SplitSkillLanguage.cs" -Remove-Item -Force "$generateFolder\Models\EntityRecognitionSkillLanguage.cs" + +# NOTE: THE FOLLOWING LINE SHOULD NOT BE REMOVED +# This is because NamedEntityRecognitionSkillLanguage is an obsolete type and we have customization in place +# to indicate as such. This can only be removed if the SDK version decides to get rid of the type altogether. Remove-Item -Force "$generateFolder\Models\NamedEntityRecognitionSkillLanguage.cs" -Remove-Item -Force "$generateFolder\Models\ImageAnalysisSkillLanguage.cs" Write-Output "Finished cleanup." diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json index ad7ddd3e1741..d43a2463a774 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98dd3653-9c03-44e6-9003-c2ad9a2c3e9b" + "3bc026c2-e8e7-4dc1-9bc2-cfa178803a38" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1198" ], "x-ms-request-id": [ - "aaf8bd8a-0602-425c-8c1a-bbbcd83e46eb" + "e6ddec1a-53bf-40bf-84b4-12605f74b9cc" ], "x-ms-correlation-request-id": [ - "aaf8bd8a-0602-425c-8c1a-bbbcd83e46eb" + "e6ddec1a-53bf-40bf-84b4-12605f74b9cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202546Z:aaf8bd8a-0602-425c-8c1a-bbbcd83e46eb" + "NORTHEUROPE:20190805T235958Z:e6ddec1a-53bf-40bf-84b4-12605f74b9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:57 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5359?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MzU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2549?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88bf33e4-12ce-416b-8cea-466ceb82e44b" + "8cf6c8dc-1f05-48c5-851f-49cd02319c86" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1198" ], "x-ms-request-id": [ - "348e8d2e-2af7-43c3-924b-fe0b7b79e0c2" + "3213399d-3254-4151-b296-f84e5e4eafdc" ], "x-ms-correlation-request-id": [ - "348e8d2e-2af7-43c3-924b-fe0b7b79e0c2" + "3213399d-3254-4151-b296-f84e5e4eafdc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202547Z:348e8d2e-2af7-43c3-924b-fe0b7b79e0c2" + "NORTHEUROPE:20190805T235959Z:3213399d-3254-4151-b296-f84e5e4eafdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:58 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359\",\r\n \"name\": \"azsmnet5359\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549\",\r\n \"name\": \"azsmnet2549\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359/providers/Microsoft.Search/searchServices/azs-7862?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MzU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549/providers/Microsoft.Search/searchServices/azs-7193?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ec0f2e6c-d568-42bc-91e7-1dd67fbd95d4" + "04036241-d5d9-4d9a-87d4-b8e0569e1cfd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A25%3A49.312972Z'\"" + "W/\"datetime'2019-08-06T00%3A00%3A02.9907944Z'\"" ], "x-ms-request-id": [ - "ec0f2e6c-d568-42bc-91e7-1dd67fbd95d4" + "04036241-d5d9-4d9a-87d4-b8e0569e1cfd" ], "request-id": [ - "ec0f2e6c-d568-42bc-91e7-1dd67fbd95d4" + "04036241-d5d9-4d9a-87d4-b8e0569e1cfd" ], "elapsed-time": [ - "835" + "1853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1198" ], "x-ms-correlation-request-id": [ - "91a4adc5-b978-4fef-bd95-090450ca6ff8" + "e2c66293-3106-453f-a602-32e189bfeac2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202550Z:91a4adc5-b978-4fef-bd95-090450ca6ff8" + "NORTHEUROPE:20190806T000003Z:e2c66293-3106-453f-a602-32e189bfeac2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:03 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359/providers/Microsoft.Search/searchServices/azs-7862\",\r\n \"name\": \"azs-7862\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549/providers/Microsoft.Search/searchServices/azs-7193\",\r\n \"name\": \"azs-7193\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359/providers/Microsoft.Search/searchServices/azs-7862/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MzU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODYyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549/providers/Microsoft.Search/searchServices/azs-7193/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTkzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b6c4fcb-3249-4692-9c81-043204c34a47" + "68c7cac2-506e-4e49-919c-fa8be2b91dc5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:52 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0b6c4fcb-3249-4692-9c81-043204c34a47" + "68c7cac2-506e-4e49-919c-fa8be2b91dc5" ], "request-id": [ - "0b6c4fcb-3249-4692-9c81-043204c34a47" + "68c7cac2-506e-4e49-919c-fa8be2b91dc5" ], "elapsed-time": [ - "130" + "121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1198" ], "x-ms-correlation-request-id": [ - "707da914-6c7a-43e7-b477-0945035a4db9" + "a3d81e4e-7d5f-403e-a10d-9146398c479d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202552Z:707da914-6c7a-43e7-b477-0945035a4db9" + "NORTHEUROPE:20190806T000005Z:a3d81e4e-7d5f-403e-a10d-9146398c479d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:04 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"52AAE0CC1070E7D3F8F2651AD6BDE793\",\r\n \"secondaryKey\": \"48DA85CAF29F85646571E573A8487ACA\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C4DC167992A38C664730E4B87714FC41\",\r\n \"secondaryKey\": \"B3480F1282BBDB8B803A78DB572895D1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359/providers/Microsoft.Search/searchServices/azs-7862/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MzU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODYyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549/providers/Microsoft.Search/searchServices/azs-7193/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTkzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "098a86c6-3a63-4b2f-8c2f-eb52e8d754b0" + "4fa82848-07cb-4ae9-9523-6bf9c64a21b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:52 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "098a86c6-3a63-4b2f-8c2f-eb52e8d754b0" + "4fa82848-07cb-4ae9-9523-6bf9c64a21b2" ], "request-id": [ - "098a86c6-3a63-4b2f-8c2f-eb52e8d754b0" + "4fa82848-07cb-4ae9-9523-6bf9c64a21b2" ], "elapsed-time": [ - "92" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14999" ], "x-ms-correlation-request-id": [ - "c396ff6e-bcfe-446b-bbc3-bf25d2acb3e4" + "ddd0c2f1-30d3-495e-b355-6074eac17607" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202552Z:c396ff6e-bcfe-446b-bbc3-bf25d2acb3e4" + "NORTHEUROPE:20190806T000005Z:ddd0c2f1-30d3-495e-b355-6074eac17607" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:04 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"068CFFE2F0C6D8CEBACF63DC90A3E281\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"28D4A9BB65631DF1234FB41413573F6B\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet692\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4522\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "842195bc-df83-41e5-8f51-27683b7088d9" + "244b460a-3881-4f40-a6b3-fe76737354db" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "52AAE0CC1070E7D3F8F2651AD6BDE793" + "C4DC167992A38C664730E4B87714FC41" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2349" + "2350" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E8D035A69\"" + "W/\"0x8D71A010CA05A33\"" ], "Location": [ - "https://azs-7862.search-dogfood.windows-int.net/indexes('azsmnet692')?api-version=2019-05-06" + "https://azs-7193.search-dogfood.windows-int.net/indexes('azsmnet4522')?api-version=2019-05-06" ], "request-id": [ - "842195bc-df83-41e5-8f51-27683b7088d9" + "244b460a-3881-4f40-a6b3-fe76737354db" ], "elapsed-time": [ - "778" + "3595" ], "OData-Version": [ "4.0" @@ -398,68 +395,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2535" + "Date": [ + "Tue, 06 Aug 2019 00:00:10 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7862.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8D035A69\\\"\",\r\n \"name\": \"azsmnet692\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7193.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A010CA05A33\\\"\",\r\n \"name\": \"azsmnet4522\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet721\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5325\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "fa0d69f4-9e8c-4a2f-82bf-22518f2ad3fc" + "7993198c-e3f1-4fc4-9df5-abaa1c3b6791" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "52AAE0CC1070E7D3F8F2651AD6BDE793" + "C4DC167992A38C664730E4B87714FC41" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "320" + "321" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E8D17D1BE\"" + "W/\"0x8D71A010CC045F3\"" ], "Location": [ - "https://azs-7862.search-dogfood.windows-int.net/datasources('azsmnet721')?api-version=2019-05-06" + "https://azs-7193.search-dogfood.windows-int.net/datasources('azsmnet5325')?api-version=2019-05-06" ], "request-id": [ - "fa0d69f4-9e8c-4a2f-82bf-22518f2ad3fc" + "7993198c-e3f1-4fc4-9df5-abaa1c3b6791" ], "elapsed-time": [ - "31" + "107" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "363" + "Date": [ + "Tue, 06 Aug 2019 00:00:10 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7862.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8D17D1BE\\\"\",\r\n \"name\": \"azsmnet721\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7193.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A010CC045F3\\\"\",\r\n \"name\": \"azsmnet5325\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9502\",\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2566\",\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "2509d798-9e85-46ba-981e-954003c64906" + "c8bcb5ab-50f3-451a-b34e-42c2b88e1920" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "52AAE0CC1070E7D3F8F2651AD6BDE793" + "C4DC167992A38C664730E4B87714FC41" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1125" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E8DFDD5C3\"" + "W/\"0x8D71A010DA00629\"" ], "Location": [ - "https://azs-7862.search-dogfood.windows-int.net/indexers('azsmnet9502')?api-version=2019-05-06" + "https://azs-7193.search-dogfood.windows-int.net/indexers('azsmnet2566')?api-version=2019-05-06" ], "request-id": [ - "2509d798-9e85-46ba-981e-954003c64906" + "c8bcb5ab-50f3-451a-b34e-42c2b88e1920" ], "elapsed-time": [ - "449" + "761" ], "OData-Version": [ "4.0" @@ -542,68 +539,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1109" + "Date": [ + "Tue, 06 Aug 2019 00:00:12 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7862.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8DFDD5C3\\\"\",\r\n \"name\": \"azsmnet9502\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7193.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A010DA00629\\\"\",\r\n \"name\": \"azsmnet2566\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3772\",\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1762\",\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "04e4d2e2-b76a-4bb8-b951-a56ea623573d" + "65573c67-ca8c-4d4a-89ee-34106dcaedc0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "52AAE0CC1070E7D3F8F2651AD6BDE793" + "C4DC167992A38C664730E4B87714FC41" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1125" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E8E6C69E8\"" + "W/\"0x8D71A010DC8F4A8\"" ], "Location": [ - "https://azs-7862.search-dogfood.windows-int.net/indexers('azsmnet3772')?api-version=2019-05-06" + "https://azs-7193.search-dogfood.windows-int.net/indexers('azsmnet1762')?api-version=2019-05-06" ], "request-id": [ - "04e4d2e2-b76a-4bb8-b951-a56ea623573d" + "65573c67-ca8c-4d4a-89ee-34106dcaedc0" ], "elapsed-time": [ - "691" + "211" ], "OData-Version": [ "4.0" @@ -614,17 +611,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1109" + "Date": [ + "Tue, 06 Aug 2019 00:00:12 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7862.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8E6C69E8\\\"\",\r\n \"name\": \"azsmnet3772\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7193.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A010DC8F4A8\\\"\",\r\n \"name\": \"azsmnet1762\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { @@ -634,36 +634,33 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fbb35dd7-459e-44b0-bf6b-fcdbc923b9ef" + "cd057112-d340-441d-87c7-dca0e4f73bba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "52AAE0CC1070E7D3F8F2651AD6BDE793" + "C4DC167992A38C664730E4B87714FC41" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:57 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "fbb35dd7-459e-44b0-bf6b-fcdbc923b9ef" + "cd057112-d340-441d-87c7-dca0e4f73bba" ], "elapsed-time": [ - "38" + "35" ], "OData-Version": [ "4.0" @@ -674,33 +671,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2129" + "Date": [ + "Tue, 06 Aug 2019 00:00:12 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2269" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7862.search-dogfood.windows-int.net/$metadata#indexers\",\r\n \"value\": [\r\n {\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8E6C69E8\\\"\",\r\n \"name\": \"azsmnet3772\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n },\r\n {\r\n \"@odata.etag\": \"\\\"0x8D6CB4E8DFDD5C3\\\"\",\r\n \"name\": \"azsmnet9502\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet721\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet692\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7193.search-dogfood.windows-int.net/$metadata#indexers\",\r\n \"value\": [\r\n {\r\n \"@odata.etag\": \"\\\"0x8D71A010DC8F4A8\\\"\",\r\n \"name\": \"azsmnet1762\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n },\r\n {\r\n \"@odata.etag\": \"\\\"0x8D71A010DA00629\\\"\",\r\n \"name\": \"azsmnet2566\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5325\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4522\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5359/providers/Microsoft.Search/searchServices/azs-7862?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MzU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2549/providers/Microsoft.Search/searchServices/azs-7193?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d6f2465-f4e2-4e12-9d80-2665ba38dfb9" + "ce89b2ea-4809-49ec-98c1-945a19441962" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -710,41 +710,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:00 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7d6f2465-f4e2-4e12-9d80-2665ba38dfb9" + "ce89b2ea-4809-49ec-98c1-945a19441962" ], "request-id": [ - "7d6f2465-f4e2-4e12-9d80-2665ba38dfb9" + "ce89b2ea-4809-49ec-98c1-945a19441962" ], "elapsed-time": [ - "1224" + "828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14999" ], "x-ms-correlation-request-id": [ - "e6fc91ae-47c0-4878-b4f0-3e5269f5f871" + "d5f08b1e-6cd2-4584-8e95-f2df85307377" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202601Z:e6fc91ae-47c0-4878-b4f0-3e5269f5f871" + "NORTHEUROPE:20190806T000015Z:d5f08b1e-6cd2-4584-8e95-f2df85307377" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:00:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -753,14 +753,14 @@ ], "Names": { "GenerateName": [ - "azsmnet5359", - "azsmnet692", - "azsmnet721", - "azsmnet9502", - "azsmnet3772" + "azsmnet2549", + "azsmnet4522", + "azsmnet5325", + "azsmnet2566", + "azsmnet1762" ], "GenerateServiceName": [ - "azs-7862" + "azs-7193" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json index f7fadd068987..f64adfc3151c 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aff482c9-e7d8-447b-83dd-05d0aa50764c" + "2637666b-3622-426f-a9f7-616c0b91b385" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:09 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1177" ], "x-ms-request-id": [ - "efdc569b-622f-422b-b922-9be7ac360531" + "579dc5b7-6c7a-4c2e-8280-51a34e923ffe" ], "x-ms-correlation-request-id": [ - "efdc569b-622f-422b-b922-9be7ac360531" + "579dc5b7-6c7a-4c2e-8280-51a34e923ffe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202409Z:efdc569b-622f-422b-b922-9be7ac360531" + "NORTHEUROPE:20190806T000424Z:579dc5b7-6c7a-4c2e-8280-51a34e923ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:23 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4354?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MzU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7402?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NDAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1de78ba-7540-4cbe-860f-c20b40a0e4a9" + "e1363d19-444c-4d7e-9cb0-a6ad48c9ed2a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:09 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1188" ], "x-ms-request-id": [ - "a94d2871-8c53-46c1-bf1a-4555920eec13" + "2f4170d5-5d42-47c3-9354-9b4f6696d99c" ], "x-ms-correlation-request-id": [ - "a94d2871-8c53-46c1-bf1a-4555920eec13" + "2f4170d5-5d42-47c3-9354-9b4f6696d99c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202409Z:a94d2871-8c53-46c1-bf1a-4555920eec13" + "NORTHEUROPE:20190806T000425Z:2f4170d5-5d42-47c3-9354-9b4f6696d99c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:24 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354\",\r\n \"name\": \"azsmnet4354\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402\",\r\n \"name\": \"azsmnet7402\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354/providers/Microsoft.Search/searchServices/azs-650?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402/providers/Microsoft.Search/searchServices/azs-6288?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b92c7686-1c73-45c9-9adc-97e316310893" + "20693228-3a21-4011-800e-3362013df196" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:12 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A24%3A12.2556046Z'\"" + "W/\"datetime'2019-08-06T00%3A04%3A27.0009032Z'\"" ], "x-ms-request-id": [ - "b92c7686-1c73-45c9-9adc-97e316310893" + "20693228-3a21-4011-800e-3362013df196" ], "request-id": [ - "b92c7686-1c73-45c9-9adc-97e316310893" + "20693228-3a21-4011-800e-3362013df196" ], "elapsed-time": [ - "1399" + "1129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1187" ], "x-ms-correlation-request-id": [ - "4c133f7d-2b2b-4a50-99e4-b171c4c525d4" + "0c65bcdd-d819-44d2-98ba-2d1c8c61f315" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202412Z:4c133f7d-2b2b-4a50-99e4-b171c4c525d4" + "NORTHEUROPE:20190806T000427Z:0c65bcdd-d819-44d2-98ba-2d1c8c61f315" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:26 GMT" + ], "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354/providers/Microsoft.Search/searchServices/azs-650\",\r\n \"name\": \"azs-650\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402/providers/Microsoft.Search/searchServices/azs-6288\",\r\n \"name\": \"azs-6288\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354/providers/Microsoft.Search/searchServices/azs-650/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTAvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402/providers/Microsoft.Search/searchServices/azs-6288/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02Mjg4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29c8d17f-c0c5-4009-8078-f2831d0c83f2" + "ab636350-2ee3-410b-aa33-0ee1248d7162" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:14 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "29c8d17f-c0c5-4009-8078-f2831d0c83f2" + "ab636350-2ee3-410b-aa33-0ee1248d7162" ], "request-id": [ - "29c8d17f-c0c5-4009-8078-f2831d0c83f2" + "ab636350-2ee3-410b-aa33-0ee1248d7162" ], "elapsed-time": [ - "406" + "159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1176" ], "x-ms-correlation-request-id": [ - "7e14ac0b-477b-435b-b666-649def5fac74" + "477a4518-2adc-47f6-84db-5117e37343d3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202415Z:7e14ac0b-477b-435b-b666-649def5fac74" + "NORTHEUROPE:20190806T000429Z:477a4518-2adc-47f6-84db-5117e37343d3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:29 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"4E71146C2E504812359AD036F564ABDA\",\r\n \"secondaryKey\": \"2091074707B6C5E9121258238BDF343B\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"3E93C44D32A5BAC2B1F58F9F8740747C\",\r\n \"secondaryKey\": \"E81351952C908B7ADE69905A9E3660E1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354/providers/Microsoft.Search/searchServices/azs-650/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTAvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402/providers/Microsoft.Search/searchServices/azs-6288/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02Mjg4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e6a2270-6e6d-471d-b3a0-24aff06a8496" + "a046051b-1ad7-4119-8798-4821a944169a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:15 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7e6a2270-6e6d-471d-b3a0-24aff06a8496" + "a046051b-1ad7-4119-8798-4821a944169a" ], "request-id": [ - "7e6a2270-6e6d-471d-b3a0-24aff06a8496" + "a046051b-1ad7-4119-8798-4821a944169a" ], "elapsed-time": [ - "389" + "92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14908" ], "x-ms-correlation-request-id": [ - "8860a735-5bcb-43a6-8050-b7b1a6ff7d9e" + "38d730a2-75d3-4055-8fb1-07d16078e8df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202415Z:8860a735-5bcb-43a6-8050-b7b1a6ff7d9e" + "NORTHEUROPE:20190806T000430Z:38d730a2-75d3-4055-8fb1-07d16078e8df" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:29 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"1F64D5A19094020BE649093A6C7AAB3E\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"AECC66323F0381A87D4BE45EAA73260D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5482\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8924\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "31a32ba0-07cb-44f7-8bf9-1cffc636c920" + "e8b7a1dc-c690-4593-88ed-fdaaa9ab2fcc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4E71146C2E504812359AD036F564ABDA" + "3E93C44D32A5BAC2B1F58F9F8740747C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E535CF2C5\"" + "W/\"0x8D71A01A82D0F7E\"" ], "Location": [ - "https://azs-650.search-dogfood.windows-int.net/indexes('azsmnet5482')?api-version=2019-05-06" + "https://azs-6288.search-dogfood.windows-int.net/indexes('azsmnet8924')?api-version=2019-05-06" ], "request-id": [ - "31a32ba0-07cb-44f7-8bf9-1cffc636c920" + "e8b7a1dc-c690-4593-88ed-fdaaa9ab2fcc" ], "elapsed-time": [ - "1375" + "766" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2535" + "Date": [ + "Tue, 06 Aug 2019 00:04:31 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-650.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E535CF2C5\\\"\",\r\n \"name\": \"azsmnet5482\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6288.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01A82D0F7E\\\"\",\r\n \"name\": \"azsmnet8924\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3789\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6161\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "63563c26-5207-4a3b-ae33-8a9ab8f04b5e" + "96071188-ec66-4dd5-afc3-a1ff31af2968" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4E71146C2E504812359AD036F564ABDA" + "3E93C44D32A5BAC2B1F58F9F8740747C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E53705870\"" + "W/\"0x8D71A01A843D145\"" ], "Location": [ - "https://azs-650.search-dogfood.windows-int.net/datasources('azsmnet3789')?api-version=2019-05-06" + "https://azs-6288.search-dogfood.windows-int.net/datasources('azsmnet6161')?api-version=2019-05-06" ], "request-id": [ - "63563c26-5207-4a3b-ae33-8a9ab8f04b5e" + "96071188-ec66-4dd5-afc3-a1ff31af2968" ], "elapsed-time": [ - "25" + "35" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "363" + "Date": [ + "Tue, 06 Aug 2019 00:04:31 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-650.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E53705870\\\"\",\r\n \"name\": \"azsmnet3789\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6288.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01A843D145\\\"\",\r\n \"name\": \"azsmnet6161\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3022\",\r\n \"dataSourceName\": \"azsmnet5318\",\r\n \"targetIndexName\": \"azsmnet5482\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2131\",\r\n \"dataSourceName\": \"azsmnet2200\",\r\n \"targetIndexName\": \"azsmnet8924\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "7ff2ca77-0d85-421d-9cd9-2128d8df02ec" + "204c680b-7c73-4245-a7bf-3f4b54fe6884" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4E71146C2E504812359AD036F564ABDA" + "3E93C44D32A5BAC2B1F58F9F8740747C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1336" + "1470" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E543E88C0\"" + "W/\"0x8D71A01A8F65C4C\"" ], "Location": [ - "https://azs-650.search-dogfood.windows-int.net/indexers('azsmnet3022')?api-version=2019-05-06" + "https://azs-6288.search-dogfood.windows-int.net/indexers('azsmnet2131')?api-version=2019-05-06" ], "request-id": [ - "7ff2ca77-0d85-421d-9cd9-2128d8df02ec" + "204c680b-7c73-4245-a7bf-3f4b54fe6884" ], "elapsed-time": [ - "56" + "62" ], "OData-Version": [ "4.0" @@ -542,33 +539,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1324" + "Date": [ + "Tue, 06 Aug 2019 00:04:32 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1393" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-650.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E543E88C0\\\"\",\r\n \"name\": \"azsmnet3022\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5318\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5482\",\r\n \"disabled\": true,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": null,\r\n \"maxFailedItems\": null,\r\n \"maxFailedItemsPerBatch\": null,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6288.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01A8F65C4C\\\"\",\r\n \"name\": \"azsmnet2131\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet2200\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8924\",\r\n \"disabled\": true,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": null,\r\n \"maxFailedItems\": null,\r\n \"maxFailedItemsPerBatch\": null,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4354/providers/Microsoft.Search/searchServices/azs-650?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7402/providers/Microsoft.Search/searchServices/azs-6288?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02Mjg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a50e6bb8-5e6d-4a30-ab74-de78dca71b42" + "565c7b5d-03cb-4ef7-953d-9062f5874374" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -578,41 +578,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a50e6bb8-5e6d-4a30-ab74-de78dca71b42" + "565c7b5d-03cb-4ef7-953d-9062f5874374" ], "request-id": [ - "a50e6bb8-5e6d-4a30-ab74-de78dca71b42" + "565c7b5d-03cb-4ef7-953d-9062f5874374" ], "elapsed-time": [ - "763" + "832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14991" ], "x-ms-correlation-request-id": [ - "a197ada6-cd0d-4139-8ce0-890bce307f9e" + "1a550580-cb3f-4ab3-b670-99be9fd628aa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202423Z:a197ada6-cd0d-4139-8ce0-890bce307f9e" + "NORTHEUROPE:20190806T000435Z:1a550580-cb3f-4ab3-b670-99be9fd628aa" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:04:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -621,14 +621,14 @@ ], "Names": { "GenerateName": [ - "azsmnet4354", - "azsmnet5482", - "azsmnet3789", - "azsmnet3022", - "azsmnet5318" + "azsmnet7402", + "azsmnet8924", + "azsmnet6161", + "azsmnet2131", + "azsmnet2200" ], "GenerateServiceName": [ - "azs-650" + "azs-6288" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json index c5c2eb75e638..9ddaea52364b 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f041abc-e2b1-43a2-8b9e-023c045f7ed1" + "6abbca55-02dd-40f2-940e-043edd204158" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1192" ], "x-ms-request-id": [ - "830604d8-e0b5-42b2-b221-327a44d25964" + "c15d35db-7d32-40b0-ac9a-8a2a29cfabef" ], "x-ms-correlation-request-id": [ - "830604d8-e0b5-42b2-b221-327a44d25964" + "c15d35db-7d32-40b0-ac9a-8a2a29cfabef" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202813Z:830604d8-e0b5-42b2-b221-327a44d25964" + "NORTHEUROPE:20190806T000334Z:c15d35db-7d32-40b0-ac9a-8a2a29cfabef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:33 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2786?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzg2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8981?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4OTgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0c787b81-ba29-4702-8202-b19de4de7a04" + "f801783e-7b56-404f-956e-e7fa69836259" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:13 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1192" ], "x-ms-request-id": [ - "ed858406-fc45-46aa-8be6-0890c7f9a483" + "fef4ba29-8d9a-4d18-95c4-8e2c27c013cc" ], "x-ms-correlation-request-id": [ - "ed858406-fc45-46aa-8be6-0890c7f9a483" + "fef4ba29-8d9a-4d18-95c4-8e2c27c013cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202814Z:ed858406-fc45-46aa-8be6-0890c7f9a483" + "NORTHEUROPE:20190806T000334Z:fef4ba29-8d9a-4d18-95c4-8e2c27c013cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:34 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786\",\r\n \"name\": \"azsmnet2786\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981\",\r\n \"name\": \"azsmnet8981\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786/providers/Microsoft.Search/searchServices/azs-4789?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Nzg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981/providers/Microsoft.Search/searchServices/azs-5292?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MjkyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d28afde4-f178-4a97-be9f-387ff6e1cd59" + "ed04cdc5-a480-45cb-97ad-a507750183f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A28%3A16.8008991Z'\"" + "W/\"datetime'2019-08-06T00%3A03%3A37.4951276Z'\"" ], "x-ms-request-id": [ - "d28afde4-f178-4a97-be9f-387ff6e1cd59" + "ed04cdc5-a480-45cb-97ad-a507750183f8" ], "request-id": [ - "d28afde4-f178-4a97-be9f-387ff6e1cd59" + "ed04cdc5-a480-45cb-97ad-a507750183f8" ], "elapsed-time": [ - "1348" + "1099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1189" ], "x-ms-correlation-request-id": [ - "425fbf56-9fb2-400d-b084-1709d062789c" + "bea8fd38-cc6e-467f-8038-91c73048ff7b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202817Z:425fbf56-9fb2-400d-b084-1709d062789c" + "NORTHEUROPE:20190806T000338Z:bea8fd38-cc6e-467f-8038-91c73048ff7b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:37 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786/providers/Microsoft.Search/searchServices/azs-4789\",\r\n \"name\": \"azs-4789\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981/providers/Microsoft.Search/searchServices/azs-5292\",\r\n \"name\": \"azs-5292\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786/providers/Microsoft.Search/searchServices/azs-4789/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Nzg5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981/providers/Microsoft.Search/searchServices/azs-5292/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MjkyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8977ec81-6160-4d07-b9a6-4e44c0f42fe4" + "ee731f1f-e424-4526-b899-96e2859d74f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:19 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8977ec81-6160-4d07-b9a6-4e44c0f42fe4" + "ee731f1f-e424-4526-b899-96e2859d74f6" ], "request-id": [ - "8977ec81-6160-4d07-b9a6-4e44c0f42fe4" + "ee731f1f-e424-4526-b899-96e2859d74f6" ], "elapsed-time": [ - "369" + "245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1189" ], "x-ms-correlation-request-id": [ - "bb30b86b-66fb-4d08-986e-05350c4912d4" + "fdb9ae3e-d44d-42f7-b0ff-d12edc539e6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202820Z:bb30b86b-66fb-4d08-986e-05350c4912d4" + "NORTHEUROPE:20190806T000339Z:fdb9ae3e-d44d-42f7-b0ff-d12edc539e6e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:39 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"D43AC9DBC3267CA58271240FF7CFB132\",\r\n \"secondaryKey\": \"992912942DC2A9C4EF3DA1F38A03AE84\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"61817644FB7DAECC2B9936BF3FCE3EA9\",\r\n \"secondaryKey\": \"9F9F7E2AB6200CFFC381859303654E23\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786/providers/Microsoft.Search/searchServices/azs-4789/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Nzg5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981/providers/Microsoft.Search/searchServices/azs-5292/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MjkyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c8ae274-c339-41d2-8530-f0e6b3355cd0" + "04016620-38c6-4cdd-b032-bd470e8a84a8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:20 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7c8ae274-c339-41d2-8530-f0e6b3355cd0" + "04016620-38c6-4cdd-b032-bd470e8a84a8" ], "request-id": [ - "7c8ae274-c339-41d2-8530-f0e6b3355cd0" + "04016620-38c6-4cdd-b032-bd470e8a84a8" ], "elapsed-time": [ - "428" + "323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14992" ], "x-ms-correlation-request-id": [ - "a954260e-b687-4a6c-b1f7-ef391f51c947" + "9854ff21-d050-4e33-983c-faaaf8d14946" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202820Z:a954260e-b687-4a6c-b1f7-ef391f51c947" + "NORTHEUROPE:20190806T000340Z:9854ff21-d050-4e33-983c-faaaf8d14946" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:40 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"03C9743C3E004434513E38C997D8E498\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"41970D1E529B6AB14A6F9FB4947E885B\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3067\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7633\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "665cddab-ff18-483e-8d1e-a3ea410eb68b" + "d36d16ec-23a5-4c97-a141-f01fe58bdc0c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "D43AC9DBC3267CA58271240FF7CFB132" + "61817644FB7DAECC2B9936BF3FCE3EA9" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EE534C142\"" + "W/\"0x8D71A018AC14560\"" ], "Location": [ - "https://azs-4789.search-dogfood.windows-int.net/indexes('azsmnet3067')?api-version=2019-05-06" + "https://azs-5292.search-dogfood.windows-int.net/indexes('azsmnet7633')?api-version=2019-05-06" ], "request-id": [ - "665cddab-ff18-483e-8d1e-a3ea410eb68b" + "d36d16ec-23a5-4c97-a141-f01fe58bdc0c" ], "elapsed-time": [ - "1332" + "795" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:03:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4789.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EE534C142\\\"\",\r\n \"name\": \"azsmnet3067\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5292.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A018AC14560\\\"\",\r\n \"name\": \"azsmnet7633\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3519\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2047\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "426d44f1-0d0c-4ab4-8ea5-2d793d7366e9" + "2aa6abf6-6f85-455c-ba77-681734e49695" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "D43AC9DBC3267CA58271240FF7CFB132" + "61817644FB7DAECC2B9936BF3FCE3EA9" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EE547FFD0\"" + "W/\"0x8D71A018AD80731\"" ], "Location": [ - "https://azs-4789.search-dogfood.windows-int.net/datasources('azsmnet3519')?api-version=2019-05-06" + "https://azs-5292.search-dogfood.windows-int.net/datasources('azsmnet2047')?api-version=2019-05-06" ], "request-id": [ - "426d44f1-0d0c-4ab4-8ea5-2d793d7366e9" + "2aa6abf6-6f85-455c-ba77-681734e49695" ], "elapsed-time": [ - "27" + "30" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:03:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4789.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EE547FFD0\\\"\",\r\n \"name\": \"azsmnet3519\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5292.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A018AD80731\\\"\",\r\n \"name\": \"azsmnet2047\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1546\",\r\n \"dataSourceName\": \"azsmnet3519\",\r\n \"targetIndexName\": \"azsmnet3067\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2342\",\r\n \"dataSourceName\": \"azsmnet2047\",\r\n \"targetIndexName\": \"azsmnet7633\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "5bf69325-eb68-4b6e-8c63-f576451d3e30" + "3ec72a9b-a186-4c84-9b56-d46a465975e2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "D43AC9DBC3267CA58271240FF7CFB132" + "61817644FB7DAECC2B9936BF3FCE3EA9" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:25 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EE6353168\"" + "W/\"0x8D71A018BCD504E\"" ], "Location": [ - "https://azs-4789.search-dogfood.windows-int.net/indexers('azsmnet1546')?api-version=2019-05-06" + "https://azs-5292.search-dogfood.windows-int.net/indexers('azsmnet2342')?api-version=2019-05-06" ], "request-id": [ - "5bf69325-eb68-4b6e-8c63-f576451d3e30" + "3ec72a9b-a186-4c84-9b56-d46a465975e2" ], "elapsed-time": [ - "266" + "861" ], "OData-Version": [ "4.0" @@ -542,60 +539,63 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:03:43 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4789.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EE6353168\\\"\",\r\n \"name\": \"azsmnet1546\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3519\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3067\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5292.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A018BCD504E\\\"\",\r\n \"name\": \"azsmnet2342\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet2047\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7633\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet1546')/search.reset?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTU0NicpL3NlYXJjaC5yZXNldD9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/indexers('azsmnet2342')/search.reset?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjM0MicpL3NlYXJjaC5yZXNldD9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d0be020a-c877-442f-aaa5-61042a33c7c0" + "d5662714-06bc-4d3d-99c5-8dae48b396dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "D43AC9DBC3267CA58271240FF7CFB132" + "61817644FB7DAECC2B9936BF3FCE3EA9" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:25 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "d0be020a-c877-442f-aaa5-61042a33c7c0" + "d5662714-06bc-4d3d-99c5-8dae48b396dc" ], "elapsed-time": [ - "192" + "180" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:43 GMT" + ], "Expires": [ "-1" ] @@ -604,39 +604,36 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet1546')/search.status?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTU0NicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexers('azsmnet2342')/search.status?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjM0MicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "467f65ec-bb8e-4767-8b9a-15395d8ab8d7" + "c509c437-2313-4bad-85b8-df8932145326" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "D43AC9DBC3267CA58271240FF7CFB132" + "61817644FB7DAECC2B9936BF3FCE3EA9" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:25 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "467f65ec-bb8e-4767-8b9a-15395d8ab8d7" + "c509c437-2313-4bad-85b8-df8932145326" ], "elapsed-time": [ "24" @@ -650,33 +647,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "712" + "Date": [ + "Tue, 06 Aug 2019 00:03:43 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "708" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4789.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet1546\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-04-27T20:28:25.174Z\",\r\n \"endTime\": \"2019-04-27T20:28:25.174Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-04-27T20:28:25.174Z\",\r\n \"endTime\": \"2019-04-27T20:28:25.174Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5292.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet2342\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-06T00:03:44.06Z\",\r\n \"endTime\": \"2019-08-06T00:03:44.06Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-06T00:03:44.06Z\",\r\n \"endTime\": \"2019-08-06T00:03:44.06Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2786/providers/Microsoft.Search/searchServices/azs-4789?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Nzg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8981/providers/Microsoft.Search/searchServices/azs-5292?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MjkyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7581cac-9249-437b-8936-5eeebb92286a" + "0700d59f-b572-4c18-89bc-09ce53fc0d01" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -686,41 +686,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:27 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d7581cac-9249-437b-8936-5eeebb92286a" + "0700d59f-b572-4c18-89bc-09ce53fc0d01" ], "request-id": [ - "d7581cac-9249-437b-8936-5eeebb92286a" + "0700d59f-b572-4c18-89bc-09ce53fc0d01" ], "elapsed-time": [ - "766" + "905" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14966" + "14992" ], "x-ms-correlation-request-id": [ - "49e8094c-e9b9-4a8a-9a7e-097ba2ccbb64" + "5237e883-0277-4382-a415-8729269d14c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202827Z:49e8094c-e9b9-4a8a-9a7e-097ba2ccbb64" + "NORTHEUROPE:20190806T000346Z:5237e883-0277-4382-a415-8729269d14c0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:03:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -729,13 +729,13 @@ ], "Names": { "GenerateName": [ - "azsmnet2786", - "azsmnet3067", - "azsmnet3519", - "azsmnet1546" + "azsmnet8981", + "azsmnet7633", + "azsmnet2047", + "azsmnet2342" ], "GenerateServiceName": [ - "azs-4789" + "azs-5292" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json index b998f967ae7a..928578c5540d 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "093e3f8a-3c2b-4b09-8550-2661edec25c8" + "9c1f6aee-1879-443d-a7a2-50899b0a4bfb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:30 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1190" ], "x-ms-request-id": [ - "d6cc5e31-9a05-47d4-b5c7-fe41f96057f4" + "20b99c9d-0eab-4c53-9ee5-1528ec73290a" ], "x-ms-correlation-request-id": [ - "d6cc5e31-9a05-47d4-b5c7-fe41f96057f4" + "20b99c9d-0eab-4c53-9ee5-1528ec73290a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202430Z:d6cc5e31-9a05-47d4-b5c7-fe41f96057f4" + "NORTHEUROPE:20190806T000515Z:20b99c9d-0eab-4c53-9ee5-1528ec73290a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:14 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8526?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTI2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8544?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82f1c747-a0b9-4615-9dd1-99d7f08e17f6" + "5e993578-57a6-48ec-9e7e-075bf90bbb6c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:31 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1190" ], "x-ms-request-id": [ - "78efe597-4d72-4b93-be65-8ba3d3b7b0bf" + "950d1f55-1883-4662-a2aa-2bf945f57192" ], "x-ms-correlation-request-id": [ - "78efe597-4d72-4b93-be65-8ba3d3b7b0bf" + "950d1f55-1883-4662-a2aa-2bf945f57192" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202431Z:78efe597-4d72-4b93-be65-8ba3d3b7b0bf" + "NORTHEUROPE:20190806T000516Z:950d1f55-1883-4662-a2aa-2bf945f57192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:15 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526\",\r\n \"name\": \"azsmnet8526\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544\",\r\n \"name\": \"azsmnet8544\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526/providers/Microsoft.Search/searchServices/azs-1278?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544/providers/Microsoft.Search/searchServices/azs-7172?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc979c0c-8983-4368-8069-4d51b332d880" + "7b9fdd90-eb72-4dcc-8675-3ef6cb9d6eaa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A24%3A34.4619486Z'\"" + "W/\"datetime'2019-08-06T00%3A05%3A18.3510428Z'\"" ], "x-ms-request-id": [ - "dc979c0c-8983-4368-8069-4d51b332d880" + "7b9fdd90-eb72-4dcc-8675-3ef6cb9d6eaa" ], "request-id": [ - "dc979c0c-8983-4368-8069-4d51b332d880" + "7b9fdd90-eb72-4dcc-8675-3ef6cb9d6eaa" ], "elapsed-time": [ - "1335" + "1019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1189" ], "x-ms-correlation-request-id": [ - "23c088e6-8e13-4d1f-bcbd-a516ee87be0d" + "1fb8c859-f1ff-4273-a6b1-2701e9014563" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202434Z:23c088e6-8e13-4d1f-bcbd-a516ee87be0d" + "NORTHEUROPE:20190806T000518Z:1fb8c859-f1ff-4273-a6b1-2701e9014563" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:18 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526/providers/Microsoft.Search/searchServices/azs-1278\",\r\n \"name\": \"azs-1278\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544/providers/Microsoft.Search/searchServices/azs-7172\",\r\n \"name\": \"azs-7172\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526/providers/Microsoft.Search/searchServices/azs-1278/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjc4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544/providers/Microsoft.Search/searchServices/azs-7172/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b9297c1-679a-4bf8-aa66-c96e76688b08" + "07c2fd52-0fec-4b72-802c-e9a90e55dffe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:36 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6b9297c1-679a-4bf8-aa66-c96e76688b08" + "07c2fd52-0fec-4b72-802c-e9a90e55dffe" ], "request-id": [ - "6b9297c1-679a-4bf8-aa66-c96e76688b08" + "07c2fd52-0fec-4b72-802c-e9a90e55dffe" ], "elapsed-time": [ - "129" + "173" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1189" ], "x-ms-correlation-request-id": [ - "e295f2f8-a9b8-419c-ae80-c82b073a84d7" + "1cee5887-84d2-444b-8c3b-88834dd823a4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202436Z:e295f2f8-a9b8-419c-ae80-c82b073a84d7" + "NORTHEUROPE:20190806T000520Z:1cee5887-84d2-444b-8c3b-88834dd823a4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:19 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9471528B6A8F96FD64CDE56EB17B060A\",\r\n \"secondaryKey\": \"99FC346733D51CF4F982662615C8DCA8\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"7107178F31B62CB5076AEC638FA65B19\",\r\n \"secondaryKey\": \"7A3EE250DADEF0C1AE9B4BF913DA28C9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526/providers/Microsoft.Search/searchServices/azs-1278/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjc4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544/providers/Microsoft.Search/searchServices/azs-7172/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be5aa980-bbb2-4924-8e4f-5d5c3e574e58" + "50ab006e-2f1e-4733-9a3d-a9e5412beb95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:37 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "be5aa980-bbb2-4924-8e4f-5d5c3e574e58" + "50ab006e-2f1e-4733-9a3d-a9e5412beb95" ], "request-id": [ - "be5aa980-bbb2-4924-8e4f-5d5c3e574e58" + "50ab006e-2f1e-4733-9a3d-a9e5412beb95" ], "elapsed-time": [ - "94" + "91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14996" ], "x-ms-correlation-request-id": [ - "b1ab73d8-d0da-4843-826e-5ad89959387c" + "d1167bd7-01a9-4adf-92c1-4aab191d7e5f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202437Z:b1ab73d8-d0da-4843-826e-5ad89959387c" + "NORTHEUROPE:20190806T000520Z:d1167bd7-01a9-4adf-92c1-4aab191d7e5f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:19 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B9EB664F9631B4AB0D1C8F8BE28AF737\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"879F22B3EA83A0747EF18F5E7049357F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6691\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2325\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "abb48e83-a3bb-4a38-b9b7-308a7c7a0232" + "542f0d9a-c5a7-48be-ab39-92c667dd894f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E5FA6C891\"" + "W/\"0x8D71A01C6B0593F\"" ], "Location": [ - "https://azs-1278.search-dogfood.windows-int.net/indexes('azsmnet6691')?api-version=2019-05-06" + "https://azs-7172.search-dogfood.windows-int.net/indexes('azsmnet2325')?api-version=2019-05-06" ], "request-id": [ - "abb48e83-a3bb-4a38-b9b7-308a7c7a0232" + "542f0d9a-c5a7-48be-ab39-92c667dd894f" ], "elapsed-time": [ - "768" + "1346" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:05:22 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E5FA6C891\\\"\",\r\n \"name\": \"azsmnet6691\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C6B0593F\\\"\",\r\n \"name\": \"azsmnet2325\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5375\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8149\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "377aafc3-cba4-42bb-94c2-48c7781e580d" + "a23c5037-be56-4f00-8e3b-ecdd4fa0934c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E5FBD634B\"" + "W/\"0x8D71A01C6C7DE83\"" ], "Location": [ - "https://azs-1278.search-dogfood.windows-int.net/datasources('azsmnet5375')?api-version=2019-05-06" + "https://azs-7172.search-dogfood.windows-int.net/datasources('azsmnet8149')?api-version=2019-05-06" ], "request-id": [ - "377aafc3-cba4-42bb-94c2-48c7781e580d" + "a23c5037-be56-4f00-8e3b-ecdd4fa0934c" ], "elapsed-time": [ - "31" + "33" ], "OData-Version": [ "4.0" @@ -470,59 +467,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:05:22 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E5FBD634B\\\"\",\r\n \"name\": \"azsmnet5375\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C6C7DE83\\\"\",\r\n \"name\": \"azsmnet8149\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexes('azsmnet6691')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2NjkxJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexes('azsmnet2325')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQyMzI1Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "99f7eae2-5969-4261-a273-25fb35e746ab" + "775c106c-7f66-4a46-9aca-c55bb4b14851" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E5FA6C891\"" + "W/\"0x8D71A01C6B0593F\"" ], "request-id": [ - "99f7eae2-5969-4261-a273-25fb35e746ab" + "775c106c-7f66-4a46-9aca-c55bb4b14851" ], "elapsed-time": [ - "17" + "26" ], "OData-Version": [ "4.0" @@ -533,68 +530,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:05:22 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E5FA6C891\\\"\",\r\n \"name\": \"azsmnet6691\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C6B0593F\\\"\",\r\n \"name\": \"azsmnet2325\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet6691')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2NjkxJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexes('azsmnet2325')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQyMzI1Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet6691\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4E5FA6C891\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2325\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"g\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"h\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A01C6B0593F\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "d690f2ac-aab9-4aa4-9a07-86b7b0f4c588" + "d9824109-bc27-4d66-afe7-fe1093861084" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "4112" + "4554" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E6211CEF6\"" + "W/\"0x8D71A01C76815A1\"" ], "request-id": [ - "d690f2ac-aab9-4aa4-9a07-86b7b0f4c588" + "d9824109-bc27-4d66-afe7-fe1093861084" ], "elapsed-time": [ - "2314" + "289" ], "OData-Version": [ "4.0" @@ -605,68 +602,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "3814" + "Date": [ + "Tue, 06 Aug 2019 00:05:23 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "4240" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E6211CEF6\\\"\",\r\n \"name\": \"azsmnet6691\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C76815A1\\\"\",\r\n \"name\": \"azsmnet2325\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"g\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"h\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet629\",\r\n \"dataSourceName\": \"azsmnet5375\",\r\n \"targetIndexName\": \"azsmnet6691\",\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9323\",\r\n \"dataSourceName\": \"azsmnet8149\",\r\n \"targetIndexName\": \"azsmnet2325\",\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"g\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"h\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "fc6b6882-81cf-41df-8d1d-bb9bd3c415a2" + "75eae201-7a2c-4531-aa88-48e92e61d452" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1357" + "1662" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E6237AFAB\"" + "W/\"0x8D71A01C78BD2DA\"" ], "Location": [ - "https://azs-1278.search-dogfood.windows-int.net/indexers('azsmnet629')?api-version=2019-05-06" + "https://azs-7172.search-dogfood.windows-int.net/indexers('azsmnet9323')?api-version=2019-05-06" ], "request-id": [ - "fc6b6882-81cf-41df-8d1d-bb9bd3c415a2" + "75eae201-7a2c-4531-aa88-48e92e61d452" ], "elapsed-time": [ - "219" + "209" ], "OData-Version": [ "4.0" @@ -677,59 +674,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1168" + "Date": [ + "Tue, 06 Aug 2019 00:05:23 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1393" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E6237AFAB\\\"\",\r\n \"name\": \"azsmnet629\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5375\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6691\",\r\n \"disabled\": null,\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C78BD2DA\\\"\",\r\n \"name\": \"azsmnet9323\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8149\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet2325\",\r\n \"disabled\": null,\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"g\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"h\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet629')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjI5Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexers('azsmnet9323')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTMyMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "82eaeea3-1829-449f-b9a0-dc1e1ebf79c2" + "a89f0795-4450-4004-88d9-e50a487b1b06" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9471528B6A8F96FD64CDE56EB17B060A" + "7107178F31B62CB5076AEC638FA65B19" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E6237AFAB\"" + "W/\"0x8D71A01C78BD2DA\"" ], "request-id": [ - "82eaeea3-1829-449f-b9a0-dc1e1ebf79c2" + "a89f0795-4450-4004-88d9-e50a487b1b06" ], "elapsed-time": [ - "13" + "35" ], "OData-Version": [ "4.0" @@ -740,33 +737,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1168" + "Date": [ + "Tue, 06 Aug 2019 00:05:23 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1393" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1278.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E6237AFAB\\\"\",\r\n \"name\": \"azsmnet629\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5375\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6691\",\r\n \"disabled\": null,\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7172.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01C78BD2DA\\\"\",\r\n \"name\": \"azsmnet9323\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8149\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet2325\",\r\n \"disabled\": null,\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"g\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"h\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8526/providers/Microsoft.Search/searchServices/azs-1278?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8544/providers/Microsoft.Search/searchServices/azs-7172?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MTcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d4fabe3-653b-4fa1-9533-e3930b8e40b8" + "54799d38-fce0-4240-8e35-07b67137817d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -776,41 +776,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:47 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d4fabe3-653b-4fa1-9533-e3930b8e40b8" + "54799d38-fce0-4240-8e35-07b67137817d" ], "request-id": [ - "0d4fabe3-653b-4fa1-9533-e3930b8e40b8" + "54799d38-fce0-4240-8e35-07b67137817d" ], "elapsed-time": [ - "1858" + "642" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14947" + "14986" ], "x-ms-correlation-request-id": [ - "377c8fc0-63d9-4fc7-a95a-8dd5112c5e8f" + "f3de64fd-466b-404e-9bda-ca23f5d2fcd9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202447Z:377c8fc0-63d9-4fc7-a95a-8dd5112c5e8f" + "NORTHEUROPE:20190806T000526Z:f3de64fd-466b-404e-9bda-ca23f5d2fcd9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:05:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -819,13 +819,13 @@ ], "Names": { "GenerateName": [ - "azsmnet8526", - "azsmnet6691", - "azsmnet5375", - "azsmnet629" + "azsmnet8544", + "azsmnet2325", + "azsmnet8149", + "azsmnet9323" ], "GenerateServiceName": [ - "azs-1278" + "azs-7172" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json index 22fa974f9a34..1d86b927da8e 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b84488a0-340b-4f4e-bda6-6e8e4ad0246b" + "0336f33e-31cb-4410-bf9e-2436769ad226" ], "Accept-Language": [ "en-US" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "27fb40d5-851a-4314-b4a5-a9f2bd53abf9" + "1fd1707f-43c4-430a-b2e7-5cf989b66ace" ], "x-ms-correlation-request-id": [ - "27fb40d5-851a-4314-b4a5-a9f2bd53abf9" + "1fd1707f-43c4-430a-b2e7-5cf989b66ace" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214429Z:27fb40d5-851a-4314-b4a5-a9f2bd53abf9" + "NORTHEUROPE:20190806T000143Z:1fd1707f-43c4-430a-b2e7-5cf989b66ace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:29 GMT" + "Tue, 06 Aug 2019 00:01:43 GMT" ], "Content-Length": [ "2230" @@ -61,13 +61,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet437?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0Mzc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8267?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MjY3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2318818f-7ce9-4f86-a6ef-a145798d5c47" + "3465c870-2d8c-455f-942c-8d91c9e96915" ], "Accept-Language": [ "en-US" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "8c7c4c5e-1914-4386-9564-afeb5cdc4ab8" + "5bccd568-989c-49e2-b93a-156ab1a44b73" ], "x-ms-correlation-request-id": [ - "8c7c4c5e-1914-4386-9564-afeb5cdc4ab8" + "5bccd568-989c-49e2-b93a-156ab1a44b73" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214430Z:8c7c4c5e-1914-4386-9564-afeb5cdc4ab8" + "NORTHEUROPE:20190806T000145Z:5bccd568-989c-49e2-b93a-156ab1a44b73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:30 GMT" + "Tue, 06 Aug 2019 00:01:44 GMT" ], "Content-Length": [ - "173" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437\",\r\n \"name\": \"azsmnet437\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267\",\r\n \"name\": \"azsmnet8267\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437/providers/Microsoft.Search/searchServices/azs-7118?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTcxMTg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267/providers/Microsoft.Search/searchServices/azs-8964?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e5517084-037c-4009-a360-08a216a1b20f" + "09568f35-431b-4782-9683-4f77ba0c22ee" ], "Accept-Language": [ "en-US" @@ -159,37 +159,37 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-07-25T21%3A44%3A34.8079008Z'\"" + "W/\"datetime'2019-08-06T00%3A01%3A47.7075781Z'\"" ], "x-ms-request-id": [ - "e5517084-037c-4009-a360-08a216a1b20f" + "09568f35-431b-4782-9683-4f77ba0c22ee" ], "request-id": [ - "e5517084-037c-4009-a360-08a216a1b20f" + "09568f35-431b-4782-9683-4f77ba0c22ee" ], "elapsed-time": [ - "1685" + "1567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "87bbf361-296c-4113-b00b-ffe76cd72071" + "a0ef5728-40af-4f1a-9c6c-590238a5f67e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214435Z:87bbf361-296c-4113-b00b-ffe76cd72071" + "NORTHEUROPE:20190806T000148Z:a0ef5728-40af-4f1a-9c6c-590238a5f67e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:34 GMT" + "Tue, 06 Aug 2019 00:01:47 GMT" ], "Content-Length": [ - "384" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437/providers/Microsoft.Search/searchServices/azs-7118\",\r\n \"name\": \"azs-7118\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267/providers/Microsoft.Search/searchServices/azs-8964\",\r\n \"name\": \"azs-8964\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437/providers/Microsoft.Search/searchServices/azs-7118/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTcxMTgvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267/providers/Microsoft.Search/searchServices/azs-8964/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02899f23-eb5d-4bc8-ba03-e032eab74033" + "b959f68e-73cd-49eb-8697-f901924fe8e0" ], "Accept-Language": [ "en-US" @@ -231,31 +231,31 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "02899f23-eb5d-4bc8-ba03-e032eab74033" + "b959f68e-73cd-49eb-8697-f901924fe8e0" ], "request-id": [ - "02899f23-eb5d-4bc8-ba03-e032eab74033" + "b959f68e-73cd-49eb-8697-f901924fe8e0" ], "elapsed-time": [ - "164" + "203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1184" ], "x-ms-correlation-request-id": [ - "3a054ca0-c4b1-441f-beb8-780cd7697748" + "02298550-cff0-466b-a6c7-c1b1b24172be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214436Z:3a054ca0-c4b1-441f-beb8-780cd7697748" + "NORTHEUROPE:20190806T000150Z:02298550-cff0-466b-a6c7-c1b1b24172be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:36 GMT" + "Tue, 06 Aug 2019 00:01:49 GMT" ], "Content-Length": [ "99" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"BD490DF0A2784B5F4EDEFB3B9C126592\",\r\n \"secondaryKey\": \"58BB6C00EF5BAB4B1CDB87704E65E355\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C28B5507B0D8B953F3B9D4D6B06569AB\",\r\n \"secondaryKey\": \"DAAB58987F842CAE616BC26C8D289BA0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437/providers/Microsoft.Search/searchServices/azs-7118/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTcxMTgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267/providers/Microsoft.Search/searchServices/azs-8964/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "904e7ce7-6230-4426-b717-5594a5006e15" + "80b3c2fb-cf3c-4d86-95c4-7e82515138d7" ], "Accept-Language": [ "en-US" @@ -300,31 +300,31 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "904e7ce7-6230-4426-b717-5594a5006e15" + "80b3c2fb-cf3c-4d86-95c4-7e82515138d7" ], "request-id": [ - "904e7ce7-6230-4426-b717-5594a5006e15" + "80b3c2fb-cf3c-4d86-95c4-7e82515138d7" ], "elapsed-time": [ - "132" + "254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14912" ], "x-ms-correlation-request-id": [ - "c94ff7b4-5cba-44b5-9e03-b401f3c75ef0" + "baf70b5c-35d4-4ab9-a4d3-419d450d56bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214437Z:c94ff7b4-5cba-44b5-9e03-b401f3c75ef0" + "NORTHEUROPE:20190806T000150Z:baf70b5c-35d4-4ab9-a4d3-419d450d56bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:36 GMT" + "Tue, 06 Aug 2019 00:01:49 GMT" ], "Content-Length": [ "82" @@ -336,35 +336,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"0F2A50F5C8E6460BE74F2E4267280CA9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"489689C404F23122A541A4879EB5757D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3346\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet37\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "bce32e1a-0c9d-456d-8510-25305fb02d4f" + "2e67155b-ef9d-446e-9516-1b90cdd5f559" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2350" + "2348" ] }, "ResponseHeaders": { @@ -375,16 +375,16 @@ "no-cache" ], "ETag": [ - "W/\"0x8D711494C3EF634\"" + "W/\"0x8D71A014999A40B\"" ], "Location": [ - "https://azs-7118.search-dogfood.windows-int.net/indexes('azsmnet3346')?api-version=2019-05-06" + "https://azs-8964.search-dogfood.windows-int.net/indexes('azsmnet37')?api-version=2019-05-06" ], "request-id": [ - "bce32e1a-0c9d-456d-8510-25305fb02d4f" + "2e67155b-ef9d-446e-9516-1b90cdd5f559" ], "elapsed-time": [ - "2385" + "1409" ], "OData-Version": [ "4.0" @@ -396,7 +396,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:40 GMT" + "Tue, 06 Aug 2019 00:01:52 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -405,38 +405,38 @@ "-1" ], "Content-Length": [ - "2536" + "2534" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7118.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D711494C3EF634\\\"\",\r\n \"name\": \"azsmnet3346\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A014999A40B\\\"\",\r\n \"name\": \"azsmnet37\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6430\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet838\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "ac77343b-f348-4cff-bb63-4b2b44e8017f" + "899e14f4-0584-459e-aec9-1cda689711de" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ] }, "ResponseHeaders": { @@ -447,16 +447,16 @@ "no-cache" ], "ETag": [ - "W/\"0x8D711494C74E03F\"" + "W/\"0x8D71A0149B1ECCB\"" ], "Location": [ - "https://azs-7118.search-dogfood.windows-int.net/datasources('azsmnet6430')?api-version=2019-05-06" + "https://azs-8964.search-dogfood.windows-int.net/datasources('azsmnet838')?api-version=2019-05-06" ], "request-id": [ - "ac77343b-f348-4cff-bb63-4b2b44e8017f" + "899e14f4-0584-459e-aec9-1cda689711de" ], "elapsed-time": [ - "114" + "35" ], "OData-Version": [ "4.0" @@ -468,7 +468,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:40 GMT" + "Tue, 06 Aug 2019 00:01:52 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -477,38 +477,38 @@ "-1" ], "Content-Length": [ - "364" + "363" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7118.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D711494C74E03F\\\"\",\r\n \"name\": \"azsmnet6430\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0149B1ECCB\\\"\",\r\n \"name\": \"azsmnet838\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06&mock_status=inProgress", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDYmbW9ja19zdGF0dXM9aW5Qcm9ncmVzcw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7011\",\r\n \"dataSourceName\": \"azsmnet6430\",\r\n \"targetIndexName\": \"azsmnet3346\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2672\",\r\n \"dataSourceName\": \"azsmnet838\",\r\n \"targetIndexName\": \"azsmnet37\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "408434ee-8095-4d45-a1c5-42334ff1fa87" + "c71ff97a-9b08-4653-91ee-56fd9c420c18" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1258" ] }, "ResponseHeaders": { @@ -519,16 +519,16 @@ "no-cache" ], "ETag": [ - "W/\"0x8D711494E4DE2A3\"" + "W/\"0x8D71A014A34F7FC\"" ], "Location": [ - "https://azs-7118.search-dogfood.windows-int.net/indexers('azsmnet7011')?api-version=2019-05-06&mock_status=inProgress" + "https://azs-8964.search-dogfood.windows-int.net/indexers('azsmnet2672')?api-version=2019-05-06&mock_status=inProgress" ], "request-id": [ - "408434ee-8095-4d45-a1c5-42334ff1fa87" + "c71ff97a-9b08-4653-91ee-56fd9c420c18" ], "elapsed-time": [ - "2306" + "223" ], "OData-Version": [ "4.0" @@ -540,7 +540,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:44 GMT" + "Tue, 06 Aug 2019 00:01:53 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -549,32 +549,32 @@ "-1" ], "Content-Length": [ - "1111" + "1176" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7118.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D711494E4DE2A3\\\"\",\r\n \"name\": \"azsmnet7011\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6430\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3346\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A014A34F7FC\\\"\",\r\n \"name\": \"azsmnet2672\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet838\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet37\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet7011')/search.status?api-version=2019-05-06&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzAxMScpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", + "RequestUri": "/indexers('azsmnet2672')/search.status?api-version=2019-05-06&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjY3MicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "500933b5-f140-4d99-b6b5-ed060fde11f5" + "33021ecf-9235-42b1-a7c1-8bbcd5d203a2" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { @@ -585,10 +585,10 @@ "no-cache" ], "request-id": [ - "500933b5-f140-4d99-b6b5-ed060fde11f5" + "33021ecf-9235-42b1-a7c1-8bbcd5d203a2" ], "elapsed-time": [ - "49" + "50" ], "OData-Version": [ "4.0" @@ -600,7 +600,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:44 GMT" + "Tue, 06 Aug 2019 00:01:53 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -609,32 +609,32 @@ "-1" ], "Content-Length": [ - "1581" + "1582" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7118.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet7011\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-25T21:44:44.266497Z\",\r\n \"endTime\": null,\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2019-07-25T21:44:44.2508598Z\",\r\n \"endTime\": \"2019-07-25T21:44:44.2508598Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-25T20:44:44.2508598Z\",\r\n \"endTime\": \"2019-07-25T20:44:44.2508598Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-24T21:44:44.266497Z\",\r\n \"endTime\": \"2019-07-24T22:44:44.266497Z\",\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": {\r\n \"maxRunTime\": \"P1D\",\r\n \"maxDocumentExtractionSize\": 1000,\r\n \"maxDocumentContentCharactersToExtract\": 100000\r\n }\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet2672\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-06T00:01:54.0040188Z\",\r\n \"endTime\": null,\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2019-08-06T00:01:53.988364Z\",\r\n \"endTime\": \"2019-08-06T00:01:53.988364Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-05T23:01:54.0040188Z\",\r\n \"endTime\": \"2019-08-05T23:01:54.0040188Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-05T00:01:54.0040188Z\",\r\n \"endTime\": \"2019-08-05T01:01:54.0040188Z\",\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": {\r\n \"maxRunTime\": \"P1D\",\r\n \"maxDocumentExtractionSize\": 1000,\r\n \"maxDocumentContentCharactersToExtract\": 100000\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet7011')/search.status?api-version=2019-05-06&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzAxMScpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", + "RequestUri": "/indexers('azsmnet2672')/search.status?api-version=2019-05-06&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjY3MicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f8fa0adf-0bc8-42d2-9873-6208e08be419" + "6be4978f-bd41-4737-bf93-edd9e6f5de69" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { @@ -645,10 +645,10 @@ "no-cache" ], "request-id": [ - "f8fa0adf-0bc8-42d2-9873-6208e08be419" + "6be4978f-bd41-4737-bf93-edd9e6f5de69" ], "elapsed-time": [ - "11" + "15" ], "OData-Version": [ "4.0" @@ -660,7 +660,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:44 GMT" + "Tue, 06 Aug 2019 00:01:54 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -672,29 +672,29 @@ "1584" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7118.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet7011\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-25T21:44:44.4852567Z\",\r\n \"endTime\": null,\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2019-07-25T21:44:44.4852567Z\",\r\n \"endTime\": \"2019-07-25T21:44:44.4852567Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-25T20:44:44.4852567Z\",\r\n \"endTime\": \"2019-07-25T20:44:44.4852567Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-07-24T21:44:44.4852567Z\",\r\n \"endTime\": \"2019-07-24T22:44:44.4852567Z\",\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": {\r\n \"maxRunTime\": \"P1D\",\r\n \"maxDocumentExtractionSize\": 1000,\r\n \"maxDocumentContentCharactersToExtract\": 100000\r\n }\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2019_05_06.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet2672\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-06T00:01:54.2383696Z\",\r\n \"endTime\": null,\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2019-08-06T00:01:54.2383696Z\",\r\n \"endTime\": \"2019-08-06T00:01:54.2383696Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-05T23:01:54.2383696Z\",\r\n \"endTime\": \"2019-08-05T23:01:54.2383696Z\",\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"metrics\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2019-08-05T00:01:54.2383696Z\",\r\n \"endTime\": \"2019-08-05T01:01:54.2383696Z\",\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"metrics\": null\r\n }\r\n ],\r\n \"limits\": {\r\n \"maxRunTime\": \"P1D\",\r\n \"maxDocumentExtractionSize\": 1000,\r\n \"maxDocumentContentCharactersToExtract\": 100000\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet7011')/search.run?api-version=2019-05-06&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzAxMScpL3NlYXJjaC5ydW4/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", + "RequestUri": "/indexers('azsmnet2672')/search.run?api-version=2019-05-06&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjY3MicpL3NlYXJjaC5ydW4/YXBpLXZlcnNpb249MjAxOS0wNS0wNiZtb2NrX3N0YXR1cz1pblByb2dyZXNz", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a69fcfc8-992c-4fff-b03c-728c3f47b28e" + "d264032b-3788-4d7d-86e1-bfb761585a3b" ], "Accept-Language": [ "en-US" ], "api-key": [ - "BD490DF0A2784B5F4EDEFB3B9C126592" + "C28B5507B0D8B953F3B9D4D6B06569AB" ], "User-Agent": [ "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.2.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { @@ -705,16 +705,16 @@ "no-cache" ], "request-id": [ - "a69fcfc8-992c-4fff-b03c-728c3f47b28e" + "d264032b-3788-4d7d-86e1-bfb761585a3b" ], "elapsed-time": [ - "78" + "82" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], "Date": [ - "Thu, 25 Jul 2019 21:44:44 GMT" + "Tue, 06 Aug 2019 00:01:53 GMT" ], "Expires": [ "-1" @@ -727,13 +727,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet437/providers/Microsoft.Search/searchServices/azs-7118?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTcxMTg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8267/providers/Microsoft.Search/searchServices/azs-8964?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4475222-b04f-4d95-9f00-6af8189b324a" + "56dca92d-1660-4969-9720-af3bacb4ef12" ], "Accept-Language": [ "en-US" @@ -753,31 +753,31 @@ "no-cache" ], "x-ms-request-id": [ - "a4475222-b04f-4d95-9f00-6af8189b324a" + "56dca92d-1660-4969-9720-af3bacb4ef12" ], "request-id": [ - "a4475222-b04f-4d95-9f00-6af8189b324a" + "56dca92d-1660-4969-9720-af3bacb4ef12" ], "elapsed-time": [ - "985" + "692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "c228bcc6-e8a9-4e92-bc40-87d82bec1b4a" + "9e7fb209-a548-43b0-b39a-fb131909306c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190725T214447Z:c228bcc6-e8a9-4e92-bc40-87d82bec1b4a" + "NORTHEUROPE:20190806T000157Z:9e7fb209-a548-43b0-b39a-fb131909306c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 25 Jul 2019 21:44:46 GMT" + "Tue, 06 Aug 2019 00:01:57 GMT" ], "Expires": [ "-1" @@ -792,13 +792,13 @@ ], "Names": { "GenerateName": [ - "azsmnet437", - "azsmnet3346", - "azsmnet6430", - "azsmnet7011" + "azsmnet8267", + "azsmnet37", + "azsmnet838", + "azsmnet2672" ], "GenerateServiceName": [ - "azs-7118" + "azs-8964" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json index ffd5b5705fb7..eb71fccc92c4 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c704e58-cbe6-4acb-a1c9-9cbbef9721b4" + "47309340-3549-4285-bcd7-baa478b9e782" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:56 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1193" ], "x-ms-request-id": [ - "bc37936d-62fc-4be9-a788-02b9397e434a" + "4468bd4c-e284-46ab-91c6-83b80306e0f0" ], "x-ms-correlation-request-id": [ - "bc37936d-62fc-4be9-a788-02b9397e434a" + "4468bd4c-e284-46ab-91c6-83b80306e0f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202856Z:bc37936d-62fc-4be9-a788-02b9397e434a" + "NORTHEUROPE:20190806T000201Z:4468bd4c-e284-46ab-91c6-83b80306e0f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:01 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4201?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MjAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8749?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NzQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f3a054df-c907-4f78-875d-9ab6342e95ef" + "c4ff9d85-d666-468f-89b1-44115aca8fcb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:57 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1193" ], "x-ms-request-id": [ - "d6d55261-275a-4c1c-9ae2-8825e9176116" + "1384ebf3-b8bf-40b9-90ec-9bfbeb5d3675" ], "x-ms-correlation-request-id": [ - "d6d55261-275a-4c1c-9ae2-8825e9176116" + "1384ebf3-b8bf-40b9-90ec-9bfbeb5d3675" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202858Z:d6d55261-275a-4c1c-9ae2-8825e9176116" + "NORTHEUROPE:20190806T000202Z:1384ebf3-b8bf-40b9-90ec-9bfbeb5d3675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:01 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201\",\r\n \"name\": \"azsmnet4201\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749\",\r\n \"name\": \"azsmnet8749\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201/providers/Microsoft.Search/searchServices/azs-2051?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDUxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749/providers/Microsoft.Search/searchServices/azs-4631?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjMxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9147ea7a-c58f-4db4-9886-a3148c65a644" + "d1d09436-0e85-467b-ba7f-f262395cdea7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A29%3A00.9143494Z'\"" + "W/\"datetime'2019-08-06T00%3A02%3A04.3079077Z'\"" ], "x-ms-request-id": [ - "9147ea7a-c58f-4db4-9886-a3148c65a644" + "d1d09436-0e85-467b-ba7f-f262395cdea7" ], "request-id": [ - "9147ea7a-c58f-4db4-9886-a3148c65a644" + "d1d09436-0e85-467b-ba7f-f262395cdea7" ], "elapsed-time": [ - "820" + "1146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1193" ], "x-ms-correlation-request-id": [ - "4319a567-25bc-4913-b192-6249feea6a58" + "7240fcd0-51b9-43a9-907b-189c9ea5709a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202901Z:4319a567-25bc-4913-b192-6249feea6a58" + "NORTHEUROPE:20190806T000204Z:7240fcd0-51b9-43a9-907b-189c9ea5709a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:04 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201/providers/Microsoft.Search/searchServices/azs-2051\",\r\n \"name\": \"azs-2051\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749/providers/Microsoft.Search/searchServices/azs-4631\",\r\n \"name\": \"azs-4631\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201/providers/Microsoft.Search/searchServices/azs-2051/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDUxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749/providers/Microsoft.Search/searchServices/azs-4631/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjMxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3c662cb-6018-4e76-81be-378e000006b7" + "3dbecc23-8f5e-4d5d-bc85-40f923fa9b4c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:03 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e3c662cb-6018-4e76-81be-378e000006b7" + "3dbecc23-8f5e-4d5d-bc85-40f923fa9b4c" ], "request-id": [ - "e3c662cb-6018-4e76-81be-378e000006b7" + "3dbecc23-8f5e-4d5d-bc85-40f923fa9b4c" ], "elapsed-time": [ - "136" + "109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1183" ], "x-ms-correlation-request-id": [ - "6705f5f9-a354-4d36-b0a5-9b48fb3c022a" + "b5ed1529-ed4d-4a63-a847-a8bae15b992f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202903Z:6705f5f9-a354-4d36-b0a5-9b48fb3c022a" + "NORTHEUROPE:20190806T000206Z:b5ed1529-ed4d-4a63-a847-a8bae15b992f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:06 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"38CAFCAA827514CB1052278626D8FC6F\",\r\n \"secondaryKey\": \"6C1C4F1800679463C92B1DCE8138D15D\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C0CE8733A7894B102586A3397455AAC8\",\r\n \"secondaryKey\": \"CEAE71930B52B27923C99A3831CC24C0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201/providers/Microsoft.Search/searchServices/azs-2051/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDUxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749/providers/Microsoft.Search/searchServices/azs-4631/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjMxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81a383e3-b779-424f-bdd5-7a3a07e970d3" + "b1530c75-ec13-447a-a0ec-eb0c1c358eb7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:04 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81a383e3-b779-424f-bdd5-7a3a07e970d3" + "b1530c75-ec13-447a-a0ec-eb0c1c358eb7" ], "request-id": [ - "81a383e3-b779-424f-bdd5-7a3a07e970d3" + "b1530c75-ec13-447a-a0ec-eb0c1c358eb7" ], "elapsed-time": [ - "92" + "89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14911" ], "x-ms-correlation-request-id": [ - "a5ef474e-deff-44d4-9cad-6c25114f2259" + "2437e738-abf4-40d9-af22-bccbcdb8c273" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202904Z:a5ef474e-deff-44d4-9cad-6c25114f2259" + "NORTHEUROPE:20190806T000207Z:2437e738-abf4-40d9-af22-bccbcdb8c273" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:06 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C0451FA09B382C49665F6AF5AFA01F75\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"0E26DA217E29876A00A987D0D408CB73\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3551\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet27\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "d0289c84-cc6b-4b36-8aa6-bb4a58b666dc" + "056b3dc7-2f81-4f79-9686-18651053f3bb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "38CAFCAA827514CB1052278626D8FC6F" + "C0CE8733A7894B102586A3397455AAC8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2350" + "2348" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EFF385B5F\"" + "W/\"0x8D71A015530C05A\"" ], "Location": [ - "https://azs-2051.search-dogfood.windows-int.net/indexes('azsmnet3551')?api-version=2019-05-06" + "https://azs-4631.search-dogfood.windows-int.net/indexes('azsmnet27')?api-version=2019-05-06" ], "request-id": [ - "d0289c84-cc6b-4b36-8aa6-bb4a58b666dc" + "056b3dc7-2f81-4f79-9686-18651053f3bb" ], "elapsed-time": [ - "1421" + "4186" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:02:12 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2534" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2051.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EFF385B5F\\\"\",\r\n \"name\": \"azsmnet3551\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4631.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A015530C05A\\\"\",\r\n \"name\": \"azsmnet27\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8710\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7602\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "9a757577-e702-4c5c-a135-b3bc3ab4d606" + "dbda86f6-e1f7-4318-8a09-dca16868915b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "38CAFCAA827514CB1052278626D8FC6F" + "C0CE8733A7894B102586A3397455AAC8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:07 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EFF4ECEF9\"" + "W/\"0x8D71A01554C8C5C\"" ], "Location": [ - "https://azs-2051.search-dogfood.windows-int.net/datasources('azsmnet8710')?api-version=2019-05-06" + "https://azs-4631.search-dogfood.windows-int.net/datasources('azsmnet7602')?api-version=2019-05-06" ], "request-id": [ - "9a757577-e702-4c5c-a135-b3bc3ab4d606" + "dbda86f6-e1f7-4318-8a09-dca16868915b" ], "elapsed-time": [ - "35" + "57" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:02:12 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2051.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EFF4ECEF9\\\"\",\r\n \"name\": \"azsmnet8710\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4631.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01554C8C5C\\\"\",\r\n \"name\": \"azsmnet7602\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4973\",\r\n \"dataSourceName\": \"azsmnet8710\",\r\n \"targetIndexName\": \"azsmnet3551\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8306\",\r\n \"dataSourceName\": \"azsmnet7602\",\r\n \"targetIndexName\": \"azsmnet27\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "f760d809-2105-4a69-89f0-173e49772d85" + "c7c335a6-3277-4c09-abb1-06d2589ae1a5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "38CAFCAA827514CB1052278626D8FC6F" + "C0CE8733A7894B102586A3397455AAC8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1259" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F000CCEFF\"" + "W/\"0x8D71A0155E1C455\"" ], "Location": [ - "https://azs-2051.search-dogfood.windows-int.net/indexers('azsmnet4973')?api-version=2019-05-06" + "https://azs-4631.search-dogfood.windows-int.net/indexers('azsmnet8306')?api-version=2019-05-06" ], "request-id": [ - "f760d809-2105-4a69-89f0-173e49772d85" + "c7c335a6-3277-4c09-abb1-06d2589ae1a5" ], "elapsed-time": [ - "188" + "197" ], "OData-Version": [ "4.0" @@ -542,68 +539,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:02:13 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1177" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2051.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F000CCEFF\\\"\",\r\n \"name\": \"azsmnet4973\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8710\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3551\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4631.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0155E1C455\\\"\",\r\n \"name\": \"azsmnet8306\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7602\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet27\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet4973')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDk3MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet8306')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODMwNicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet4973\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet8710\",\r\n \"targetIndexName\": \"azsmnet3551\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8306\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet7602\",\r\n \"targetIndexName\": \"azsmnet27\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c6b8e0f0-e5f3-4a46-a173-b3fa088861d6" + "19cfbe1d-386e-4902-88e7-02d4b25eb6d6" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "38CAFCAA827514CB1052278626D8FC6F" + "C0CE8733A7894B102586A3397455AAC8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1167" + "1299" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F008CA555\"" + "W/\"0x8D71A0156084157\"" ], "request-id": [ - "c6b8e0f0-e5f3-4a46-a173-b3fa088861d6" + "19cfbe1d-386e-4902-88e7-02d4b25eb6d6" ], "elapsed-time": [ - "737" + "183" ], "OData-Version": [ "4.0" @@ -614,33 +611,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1127" + "Date": [ + "Tue, 06 Aug 2019 00:02:13 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1193" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2051.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F008CA555\\\"\",\r\n \"name\": \"azsmnet4973\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet8710\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3551\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4631.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0156084157\\\"\",\r\n \"name\": \"azsmnet8306\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet7602\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet27\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4201/providers/Microsoft.Search/searchServices/azs-2051?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDUxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8749/providers/Microsoft.Search/searchServices/azs-4631?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjMxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ad5552b-92b8-4490-9fee-c89aef4a5009" + "8d5ec0fa-0908-48ba-a367-ca858069299d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -650,41 +650,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1ad5552b-92b8-4490-9fee-c89aef4a5009" + "8d5ec0fa-0908-48ba-a367-ca858069299d" ], "request-id": [ - "1ad5552b-92b8-4490-9fee-c89aef4a5009" + "8d5ec0fa-0908-48ba-a367-ca858069299d" ], "elapsed-time": [ - "1307" + "639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14964" + "14994" ], "x-ms-correlation-request-id": [ - "e3ae688d-09ec-4c3b-8f71-a6c7ef972e98" + "5f3cd44b-ef7a-4640-bcc6-a92a919bdb7e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202913Z:e3ae688d-09ec-4c3b-8f71-a6c7ef972e98" + "NORTHEUROPE:20190806T000216Z:5f3cd44b-ef7a-4640-bcc6-a92a919bdb7e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:02:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -693,14 +693,14 @@ ], "Names": { "GenerateName": [ - "azsmnet4201", - "azsmnet3551", - "azsmnet8710", - "azsmnet4973", - "azsmnet9565" + "azsmnet8749", + "azsmnet27", + "azsmnet7602", + "azsmnet8306", + "azsmnet4551" ], "GenerateServiceName": [ - "azs-2051" + "azs-4631" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json index 444204c0f7d5..e7ad1cfa6726 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aad3c02-2583-41c2-ac0a-f7ca7b0affa4" + "d76574a3-74ce-42db-8d5d-5529b61e3934" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:34 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1190" ], "x-ms-request-id": [ - "47beb57a-388b-452a-9320-ed8908db2fa8" + "1e0b696f-e285-4b5d-8f7c-a07ad3a4a511" ], "x-ms-correlation-request-id": [ - "47beb57a-388b-452a-9320-ed8908db2fa8" + "1e0b696f-e285-4b5d-8f7c-a07ad3a4a511" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202835Z:47beb57a-388b-452a-9320-ed8908db2fa8" + "NORTHEUROPE:20190806T000316Z:1e0b696f-e285-4b5d-8f7c-a07ad3a4a511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:16 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7349?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MzQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3116?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMTE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3253576-2b14-4b05-9959-e5b1b7dbfc29" + "40cffc10-f9b0-4b26-ab9c-7831ec5eddf8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:35 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1190" ], "x-ms-request-id": [ - "51c1877f-d210-40d4-9b34-bd1c8cc0eac2" + "37040f9d-adeb-477f-932d-555a945f4d46" ], "x-ms-correlation-request-id": [ - "51c1877f-d210-40d4-9b34-bd1c8cc0eac2" + "37040f9d-adeb-477f-932d-555a945f4d46" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202836Z:51c1877f-d210-40d4-9b34-bd1c8cc0eac2" + "NORTHEUROPE:20190806T000317Z:37040f9d-adeb-477f-932d-555a945f4d46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:17 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349\",\r\n \"name\": \"azsmnet7349\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116\",\r\n \"name\": \"azsmnet3116\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349/providers/Microsoft.Search/searchServices/azs-7481?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDgxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116/providers/Microsoft.Search/searchServices/azs-204?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a2da306e-601a-4202-b20b-8dcdf8a07500" + "569ffb0f-cf1b-4705-9877-c01fecba2673" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A28%3A38.9642292Z'\"" + "W/\"datetime'2019-08-06T00%3A03%3A20.8137373Z'\"" ], "x-ms-request-id": [ - "a2da306e-601a-4202-b20b-8dcdf8a07500" + "569ffb0f-cf1b-4705-9877-c01fecba2673" ], "request-id": [ - "a2da306e-601a-4202-b20b-8dcdf8a07500" + "569ffb0f-cf1b-4705-9877-c01fecba2673" ], "elapsed-time": [ - "811" + "970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1190" ], "x-ms-correlation-request-id": [ - "be9dedad-f0f7-45ae-955c-2882dc05b0e6" + "f258196d-3b51-49cf-9486-9a4bfaa22303" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202839Z:be9dedad-f0f7-45ae-955c-2882dc05b0e6" + "NORTHEUROPE:20190806T000321Z:f258196d-3b51-49cf-9486-9a4bfaa22303" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:20 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349/providers/Microsoft.Search/searchServices/azs-7481\",\r\n \"name\": \"azs-7481\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116/providers/Microsoft.Search/searchServices/azs-204\",\r\n \"name\": \"azs-204\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349/providers/Microsoft.Search/searchServices/azs-7481/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDgxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116/providers/Microsoft.Search/searchServices/azs-204/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0497fac-876a-4b32-aa79-b1bf30e66d76" + "fb2a0ec1-e91b-48b6-9130-d1018da5123b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:42 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0497fac-876a-4b32-aa79-b1bf30e66d76" + "fb2a0ec1-e91b-48b6-9130-d1018da5123b" ], "request-id": [ - "c0497fac-876a-4b32-aa79-b1bf30e66d76" + "fb2a0ec1-e91b-48b6-9130-d1018da5123b" ], "elapsed-time": [ - "142" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1180" ], "x-ms-correlation-request-id": [ - "7cc4b7ec-e3b0-49a8-b390-00e71133e0cf" + "07cdb500-7ea8-4f11-9d81-c2d8ec36bdae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202843Z:7cc4b7ec-e3b0-49a8-b390-00e71133e0cf" + "NORTHEUROPE:20190806T000323Z:07cdb500-7ea8-4f11-9d81-c2d8ec36bdae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:23 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"53A7662BA96F81DA407168A6B7E8BEB0\",\r\n \"secondaryKey\": \"F4E9E958CA00E827BE3E15FF7F5DF883\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"7D304B7EAB623C21FDA0B5A19205C464\",\r\n \"secondaryKey\": \"C7371CDBCAD0E0C49EFA3D327D382358\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349/providers/Microsoft.Search/searchServices/azs-7481/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDgxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116/providers/Microsoft.Search/searchServices/azs-204/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "454e908d-1953-4ff7-8699-ef4b79ba60e6" + "b1300ecb-8422-4b47-b17b-d5410ea33458" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:42 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "454e908d-1953-4ff7-8699-ef4b79ba60e6" + "b1300ecb-8422-4b47-b17b-d5410ea33458" ], "request-id": [ - "454e908d-1953-4ff7-8699-ef4b79ba60e6" + "b1300ecb-8422-4b47-b17b-d5410ea33458" ], "elapsed-time": [ - "94" + "93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14910" ], "x-ms-correlation-request-id": [ - "3f9a81f8-401a-405b-9a38-900afae48db9" + "c8782106-c9c0-40d5-b86c-7487db726c1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202843Z:3f9a81f8-401a-405b-9a38-900afae48db9" + "NORTHEUROPE:20190806T000323Z:c8782106-c9c0-40d5-b86c-7487db726c1d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:23 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"94F827C7BEDAACF9749A89479D9BDF9E\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E3C6AC129BC06E57B836EA68EE8D341A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7911\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7458\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "a6fd229e-66ad-464c-8cc8-1017c36bac8f" + "0be83f66-1d8d-4449-a530-24b1585c2f1d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "53A7662BA96F81DA407168A6B7E8BEB0" + "7D304B7EAB623C21FDA0B5A19205C464" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EF28AF0F6\"" + "W/\"0x8D71A01813A9C3C\"" ], "Location": [ - "https://azs-7481.search-dogfood.windows-int.net/indexes('azsmnet7911')?api-version=2019-05-06" + "https://azs-204.search-dogfood.windows-int.net/indexes('azsmnet7458')?api-version=2019-05-06" ], "request-id": [ - "a6fd229e-66ad-464c-8cc8-1017c36bac8f" + "0be83f66-1d8d-4449-a530-24b1585c2f1d" ], "elapsed-time": [ - "799" + "1514" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:03:26 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2535" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7481.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EF28AF0F6\\\"\",\r\n \"name\": \"azsmnet7911\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-204.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01813A9C3C\\\"\",\r\n \"name\": \"azsmnet7458\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6894\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7701\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "33c913f4-49fd-49ba-a7b4-4dcc40164734" + "e00607a1-c204-4fd9-8f8f-e936bb22114f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "53A7662BA96F81DA407168A6B7E8BEB0" + "7D304B7EAB623C21FDA0B5A19205C464" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EF2A1B2C3\"" + "W/\"0x8D71A0181530C22\"" ], "Location": [ - "https://azs-7481.search-dogfood.windows-int.net/datasources('azsmnet6894')?api-version=2019-05-06" + "https://azs-204.search-dogfood.windows-int.net/datasources('azsmnet7701')?api-version=2019-05-06" ], "request-id": [ - "33c913f4-49fd-49ba-a7b4-4dcc40164734" + "e00607a1-c204-4fd9-8f8f-e936bb22114f" ], "elapsed-time": [ - "28" + "33" ], "OData-Version": [ "4.0" @@ -470,62 +467,62 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:03:26 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "363" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7481.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EF2A1B2C3\\\"\",\r\n \"name\": \"azsmnet6894\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-204.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0181530C22\\\"\",\r\n \"name\": \"azsmnet7701\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet700\",\r\n \"dataSourceName\": \"thisdatasourcedoesnotexist\",\r\n \"targetIndexName\": \"azsmnet7911\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9452\",\r\n \"dataSourceName\": \"thisdatasourcedoesnotexist\",\r\n \"targetIndexName\": \"azsmnet7458\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "eaff59b2-ef77-4c1f-9569-65ae157c8563" + "4b84319b-ccb2-45fa-a64b-0f1d76f0bdff" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "53A7662BA96F81DA407168A6B7E8BEB0" + "7D304B7EAB623C21FDA0B5A19205C464" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1141" + "1276" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:48 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "eaff59b2-ef77-4c1f-9569-65ae157c8563" + "4b84319b-ccb2-45fa-a64b-0f1d76f0bdff" ], "elapsed-time": [ - "105" + "34" ], "OData-Version": [ "4.0" @@ -536,8 +533,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "118" + "Date": [ + "Tue, 06 Aug 2019 00:03:26 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -547,25 +544,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "118" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"This indexer refers to a data source 'thisdatasourcedoesnotexist' that doesn't exist\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7349/providers/Microsoft.Search/searchServices/azs-7481?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDgxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3116/providers/Microsoft.Search/searchServices/azs-204?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3fc7622-ea82-4ded-8df2-7d05c8c36cd6" + "2db7fd07-910a-4a8e-b44f-23cfffbe11f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -575,41 +575,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e3fc7622-ea82-4ded-8df2-7d05c8c36cd6" + "2db7fd07-910a-4a8e-b44f-23cfffbe11f8" ], "request-id": [ - "e3fc7622-ea82-4ded-8df2-7d05c8c36cd6" + "2db7fd07-910a-4a8e-b44f-23cfffbe11f8" ], "elapsed-time": [ - "789" + "874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14965" + "14990" ], "x-ms-correlation-request-id": [ - "2d388443-a8fa-43f7-bf93-c6d5c7a28ac3" + "6f28e28c-00b6-4011-b717-d382b6b98c35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202851Z:2d388443-a8fa-43f7-bf93-c6d5c7a28ac3" + "NORTHEUROPE:20190806T000330Z:6f28e28c-00b6-4011-b717-d382b6b98c35" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:03:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -618,13 +618,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7349", - "azsmnet7911", - "azsmnet6894", - "azsmnet700" + "azsmnet3116", + "azsmnet7458", + "azsmnet7701", + "azsmnet9452" ], "GenerateServiceName": [ - "azs-7481" + "azs-204" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json index 29cf8752063a..a7c189f7bc25 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cf0195b-3855-437d-aa06-8129179472ea" + "f1f74a09-e087-499f-920b-8f37e085d9b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:18 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1186" ], "x-ms-request-id": [ - "c2039721-845d-4dae-aefc-205627de88c1" + "418201f1-5213-406a-bdd5-76f1d393ee8d" ], "x-ms-correlation-request-id": [ - "c2039721-845d-4dae-aefc-205627de88c1" + "418201f1-5213-406a-bdd5-76f1d393ee8d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202919Z:c2039721-845d-4dae-aefc-205627de88c1" + "NORTHEUROPE:20190806T000055Z:418201f1-5213-406a-bdd5-76f1d393ee8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:55 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3574?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNTc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2663?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9940d3fd-8427-4ad0-9254-fc4e73b2e544" + "5faa51f8-9294-412b-855d-b76a13856587" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:19 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1196" ], "x-ms-request-id": [ - "321163dc-4447-4db8-ac04-4e40cb093c68" + "c8a43952-ef05-4d4e-bb71-2d97a2c28843" ], "x-ms-correlation-request-id": [ - "321163dc-4447-4db8-ac04-4e40cb093c68" + "c8a43952-ef05-4d4e-bb71-2d97a2c28843" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202919Z:321163dc-4447-4db8-ac04-4e40cb093c68" + "NORTHEUROPE:20190806T000056Z:c8a43952-ef05-4d4e-bb71-2d97a2c28843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:55 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574\",\r\n \"name\": \"azsmnet3574\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663\",\r\n \"name\": \"azsmnet2663\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574/providers/Microsoft.Search/searchServices/azs-410?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663/providers/Microsoft.Search/searchServices/azs-8035?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57d069b5-c20f-43f7-afe2-04cdff91bcb4" + "37e3220a-720b-4a27-9c26-d0274eafc161" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A29%3A22.6492664Z'\"" + "W/\"datetime'2019-08-06T00%3A00%3A58.415967Z'\"" ], "x-ms-request-id": [ - "57d069b5-c20f-43f7-afe2-04cdff91bcb4" + "37e3220a-720b-4a27-9c26-d0274eafc161" ], "request-id": [ - "57d069b5-c20f-43f7-afe2-04cdff91bcb4" + "37e3220a-720b-4a27-9c26-d0274eafc161" ], "elapsed-time": [ - "1013" + "1339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1196" ], "x-ms-correlation-request-id": [ - "0657c1b1-6033-488c-a0aa-014dc740858d" + "f18e6edc-f89e-4702-8e3f-066296c9896e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202923Z:0657c1b1-6033-488c-a0aa-014dc740858d" + "NORTHEUROPE:20190806T000058Z:f18e6edc-f89e-4702-8e3f-066296c9896e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:58 GMT" + ], "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574/providers/Microsoft.Search/searchServices/azs-410\",\r\n \"name\": \"azs-410\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663/providers/Microsoft.Search/searchServices/azs-8035\",\r\n \"name\": \"azs-8035\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574/providers/Microsoft.Search/searchServices/azs-410/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTAvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663/providers/Microsoft.Search/searchServices/azs-8035/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDM1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20d05d4b-b4db-480d-b076-891ea7643741" + "90924c61-5f50-4766-8489-8ffe950d55b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:25 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "20d05d4b-b4db-480d-b076-891ea7643741" + "90924c61-5f50-4766-8489-8ffe950d55b2" ], "request-id": [ - "20d05d4b-b4db-480d-b076-891ea7643741" + "90924c61-5f50-4766-8489-8ffe950d55b2" ], "elapsed-time": [ - "143" + "208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1196" ], "x-ms-correlation-request-id": [ - "aa6cde50-9f91-430a-b038-5f2cd4ed1668" + "6c205738-dc9b-4959-9267-a06ac1c29b12" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202925Z:aa6cde50-9f91-430a-b038-5f2cd4ed1668" + "NORTHEUROPE:20190806T000100Z:6c205738-dc9b-4959-9267-a06ac1c29b12" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:00 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"A800877C999A5E252D66392B4C5A7F40\",\r\n \"secondaryKey\": \"0E9458973496D8A1007FC73F90E1E53D\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"24B246C49EDCE43753CD28D2C00EAA85\",\r\n \"secondaryKey\": \"960E63C169B4F38FB839F352741DD3B1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574/providers/Microsoft.Search/searchServices/azs-410/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTAvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663/providers/Microsoft.Search/searchServices/azs-8035/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDM1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92c06495-a9f3-4e90-bcab-a5ff418c7574" + "b94e49e8-d8b7-4e31-bd61-5bdca3f86838" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:25 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92c06495-a9f3-4e90-bcab-a5ff418c7574" + "b94e49e8-d8b7-4e31-bd61-5bdca3f86838" ], "request-id": [ - "92c06495-a9f3-4e90-bcab-a5ff418c7574" + "b94e49e8-d8b7-4e31-bd61-5bdca3f86838" ], "elapsed-time": [ - "106" + "387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14997" ], "x-ms-correlation-request-id": [ - "5262eec9-c8eb-4adb-8044-5901aa0c3295" + "f21e1d14-159e-46b3-acf2-79711e167539" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202925Z:5262eec9-c8eb-4adb-8044-5901aa0c3295" + "NORTHEUROPE:20190806T000101Z:f21e1d14-159e-46b3-acf2-79711e167539" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:00 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"26AABC4B779B6FDBE0AD1F2BF31DC454\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"AA78D5CE33B751B12EF50841F8B0D2B5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8124\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3668\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "eb5ac4c7-4a2e-4aec-875e-6847e372f76d" + "d2f669e8-febe-4e8a-a9b2-a14afe47a49d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A800877C999A5E252D66392B4C5A7F40" + "24B246C49EDCE43753CD28D2C00EAA85" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F0B9C00F0\"" + "W/\"0x8D71A012C285A5A\"" ], "Location": [ - "https://azs-410.search-dogfood.windows-int.net/indexes('azsmnet8124')?api-version=2019-05-06" + "https://azs-8035.search-dogfood.windows-int.net/indexes('azsmnet3668')?api-version=2019-05-06" ], "request-id": [ - "eb5ac4c7-4a2e-4aec-875e-6847e372f76d" + "d2f669e8-febe-4e8a-a9b2-a14afe47a49d" ], "elapsed-time": [ - "710" + "1432" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2535" + "Date": [ + "Tue, 06 Aug 2019 00:01:03 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-410.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F0B9C00F0\\\"\",\r\n \"name\": \"azsmnet8124\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8035.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A012C285A5A\\\"\",\r\n \"name\": \"azsmnet3668\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3716\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5954\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "1d1b387b-deb8-4add-bc4b-83ff4c08f954" + "8104abb1-1195-4738-94fd-046fbfb57531" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A800877C999A5E252D66392B4C5A7F40" + "24B246C49EDCE43753CD28D2C00EAA85" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F0BC9ABB4\"" + "W/\"0x8D71A012C3E0A72\"" ], "Location": [ - "https://azs-410.search-dogfood.windows-int.net/datasources('azsmnet3716')?api-version=2019-05-06" + "https://azs-8035.search-dogfood.windows-int.net/datasources('azsmnet5954')?api-version=2019-05-06" ], "request-id": [ - "1d1b387b-deb8-4add-bc4b-83ff4c08f954" + "8104abb1-1195-4738-94fd-046fbfb57531" ], "elapsed-time": [ - "194" + "29" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "363" + "Date": [ + "Tue, 06 Aug 2019 00:01:03 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-410.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F0BC9ABB4\\\"\",\r\n \"name\": \"azsmnet3716\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8035.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A012C3E0A72\\\"\",\r\n \"name\": \"azsmnet5954\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4137\",\r\n \"dataSourceName\": \"azsmnet3716\",\r\n \"targetIndexName\": \"azsmnet8124\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5324\",\r\n \"dataSourceName\": \"azsmnet5954\",\r\n \"targetIndexName\": \"azsmnet3668\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "e891fb28-cc51-4855-8c5e-9700fa59ed84" + "709bd5c1-d60c-4b9d-92f9-6cba61442e7d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A800877C999A5E252D66392B4C5A7F40" + "24B246C49EDCE43753CD28D2C00EAA85" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1256" + "1390" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:29 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F0CB50811\"" + "W/\"0x8D71A012D00508F\"" ], "Location": [ - "https://azs-410.search-dogfood.windows-int.net/indexers('azsmnet4137')?api-version=2019-05-06" + "https://azs-8035.search-dogfood.windows-int.net/indexers('azsmnet5324')?api-version=2019-05-06" ], "request-id": [ - "e891fb28-cc51-4855-8c5e-9700fa59ed84" + "709bd5c1-d60c-4b9d-92f9-6cba61442e7d" ], "elapsed-time": [ - "85" + "475" ], "OData-Version": [ "4.0" @@ -542,33 +539,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1213" + "Date": [ + "Tue, 06 Aug 2019 00:01:04 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1282" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-410.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F0CB50811\\\"\",\r\n \"name\": \"azsmnet4137\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3716\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8124\",\r\n \"disabled\": true,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {}\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8035.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A012D00508F\\\"\",\r\n \"name\": \"azsmnet5324\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5954\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3668\",\r\n \"disabled\": true,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {}\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3574/providers/Microsoft.Search/searchServices/azs-410?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2663/providers/Microsoft.Search/searchServices/azs-8035?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "577c7774-1cf3-4312-ad9d-6bd032fbdaf3" + "75a6b3c9-e997-4f85-9168-62a7bfbb03b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -578,41 +578,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:31 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "577c7774-1cf3-4312-ad9d-6bd032fbdaf3" + "75a6b3c9-e997-4f85-9168-62a7bfbb03b2" ], "request-id": [ - "577c7774-1cf3-4312-ad9d-6bd032fbdaf3" + "75a6b3c9-e997-4f85-9168-62a7bfbb03b2" ], "elapsed-time": [ - "818" + "1925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14944" + "14995" ], "x-ms-correlation-request-id": [ - "9790bb69-22a3-46c7-a1fe-6192e58b6497" + "595b3baf-6abf-4e09-9e32-c49624728a4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202932Z:9790bb69-22a3-46c7-a1fe-6192e58b6497" + "NORTHEUROPE:20190806T000109Z:595b3baf-6abf-4e09-9e32-c49624728a4c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:01:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -621,13 +621,13 @@ ], "Names": { "GenerateName": [ - "azsmnet3574", - "azsmnet8124", - "azsmnet3716", - "azsmnet4137" + "azsmnet2663", + "azsmnet3668", + "azsmnet5954", + "azsmnet5324" ], "GenerateServiceName": [ - "azs-410" + "azs-8035" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json index 3951217e4869..a493d23d2e36 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "830cbf95-1e92-4813-9844-9a6ff99cdf32" + "cbbfb06b-5996-4f2b-a1a5-dc1aa06fef3d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:52 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1182" ], "x-ms-request-id": [ - "6098212d-db77-4d65-b5d0-a365275f94f1" + "8f93a7e3-cccb-4394-a85a-ea5c613b517b" ], "x-ms-correlation-request-id": [ - "6098212d-db77-4d65-b5d0-a365275f94f1" + "8f93a7e3-cccb-4394-a85a-ea5c613b517b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202452Z:6098212d-db77-4d65-b5d0-a365275f94f1" + "NORTHEUROPE:20190806T000220Z:8f93a7e3-cccb-4394-a85a-ea5c613b517b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:20 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9358?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MzU4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3230?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMjMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8ab01c-7206-4cc7-a7a9-c5ca47e136d8" + "b51046de-b946-47ab-bc55-606156bd6046" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1192" ], "x-ms-request-id": [ - "35cfda0e-406a-471b-922f-c4b08e6da98e" + "4a3e13a4-415d-418b-968c-64606832b041" ], "x-ms-correlation-request-id": [ - "35cfda0e-406a-471b-922f-c4b08e6da98e" + "4a3e13a4-415d-418b-968c-64606832b041" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202454Z:35cfda0e-406a-471b-922f-c4b08e6da98e" + "NORTHEUROPE:20190806T000221Z:4a3e13a4-415d-418b-968c-64606832b041" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:21 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358\",\r\n \"name\": \"azsmnet9358\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230\",\r\n \"name\": \"azsmnet3230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358/providers/Microsoft.Search/searchServices/azs-5763?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MzU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NzYzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230/providers/Microsoft.Search/searchServices/azs-7787?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Nzg3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f634a1ae-593e-4382-ac8e-fab355da7212" + "2600dc73-34be-4632-ba5d-64addb158e19" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:57 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A24%3A57.0416751Z'\"" + "W/\"datetime'2019-08-06T00%3A02%3A23.5411921Z'\"" ], "x-ms-request-id": [ - "f634a1ae-593e-4382-ac8e-fab355da7212" + "2600dc73-34be-4632-ba5d-64addb158e19" ], "request-id": [ - "f634a1ae-593e-4382-ac8e-fab355da7212" + "2600dc73-34be-4632-ba5d-64addb158e19" ], "elapsed-time": [ - "1193" + "944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1193" ], "x-ms-correlation-request-id": [ - "567dfb0c-f583-42c3-90ba-201be6a2bdb4" + "c165afbe-e14d-4904-93f8-551f0e9c97a7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202458Z:567dfb0c-f583-42c3-90ba-201be6a2bdb4" + "NORTHEUROPE:20190806T000224Z:c165afbe-e14d-4904-93f8-551f0e9c97a7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:23 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358/providers/Microsoft.Search/searchServices/azs-5763\",\r\n \"name\": \"azs-5763\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230/providers/Microsoft.Search/searchServices/azs-7787\",\r\n \"name\": \"azs-7787\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358/providers/Microsoft.Search/searchServices/azs-5763/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MzU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NzYzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230/providers/Microsoft.Search/searchServices/azs-7787/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Nzg3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15a424dc-bcc1-4fd9-ab2d-af3605484c2c" + "2a2993a6-d18d-4e20-b957-e7b0d14de065" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:00 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "15a424dc-bcc1-4fd9-ab2d-af3605484c2c" + "2a2993a6-d18d-4e20-b957-e7b0d14de065" ], "request-id": [ - "15a424dc-bcc1-4fd9-ab2d-af3605484c2c" + "2a2993a6-d18d-4e20-b957-e7b0d14de065" ], "elapsed-time": [ - "126" + "139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1193" ], "x-ms-correlation-request-id": [ - "d6e6fc26-b42d-4a5f-bf89-2a043cae6639" + "5e5197f0-58a4-4131-ad51-911f45b7d651" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202500Z:d6e6fc26-b42d-4a5f-bf89-2a043cae6639" + "NORTHEUROPE:20190806T000225Z:5e5197f0-58a4-4131-ad51-911f45b7d651" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:25 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"A4B0D7F53B34C12C4451C7FF1FA6E4D1\",\r\n \"secondaryKey\": \"93725633A9E35963964BD38C8C255972\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"E69391F6D503D0069E1C8CE7C5D4B675\",\r\n \"secondaryKey\": \"F111599FB988C2973FD3F3673C570549\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358/providers/Microsoft.Search/searchServices/azs-5763/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MzU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NzYzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230/providers/Microsoft.Search/searchServices/azs-7787/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Nzg3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "899bc9c5-1db3-4af0-921c-3bb4b59850bf" + "a8136e27-26b9-47fd-9287-491f8c8cc1e1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:01 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "899bc9c5-1db3-4af0-921c-3bb4b59850bf" + "a8136e27-26b9-47fd-9287-491f8c8cc1e1" ], "request-id": [ - "899bc9c5-1db3-4af0-921c-3bb4b59850bf" + "a8136e27-26b9-47fd-9287-491f8c8cc1e1" ], "elapsed-time": [ - "107" + "94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-correlation-request-id": [ - "f134d4a4-c977-4fa9-9098-522307295c1f" + "1b239823-9382-4a70-89b6-2fddb5abcedb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202501Z:f134d4a4-c977-4fa9-9098-522307295c1f" + "NORTHEUROPE:20190806T000226Z:1b239823-9382-4a70-89b6-2fddb5abcedb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:25 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"584A920E227CE6B8D344C5D78C920B9F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"AF7B648C20A126A90DCFD3AEC2EE7879\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1061\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5392\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "5aa3bd20-9bde-44cd-b39d-756a23adef99" + "a2d443d6-b103-44d8-8d4d-eaf3d54c73fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A4B0D7F53B34C12C4451C7FF1FA6E4D1" + "E69391F6D503D0069E1C8CE7C5D4B675" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E70DDBB53\"" + "W/\"0x8D71A015F491E19\"" ], "Location": [ - "https://azs-5763.search-dogfood.windows-int.net/indexes('azsmnet1061')?api-version=2019-05-06" + "https://azs-7787.search-dogfood.windows-int.net/indexes('azsmnet5392')?api-version=2019-05-06" ], "request-id": [ - "5aa3bd20-9bde-44cd-b39d-756a23adef99" + "a2d443d6-b103-44d8-8d4d-eaf3d54c73fc" ], "elapsed-time": [ - "1470" + "2381" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:02:29 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5763.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E70DDBB53\\\"\",\r\n \"name\": \"azsmnet1061\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7787.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A015F491E19\\\"\",\r\n \"name\": \"azsmnet5392\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7253\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1704\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "535718da-de6d-401e-88fe-3933006c69f8" + "afc81547-6719-44b1-81bf-31bab24e1ce9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A4B0D7F53B34C12C4451C7FF1FA6E4D1" + "E69391F6D503D0069E1C8CE7C5D4B675" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:08 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E71008E03\"" + "W/\"0x8D71A015F5F6A9B\"" ], "Location": [ - "https://azs-5763.search-dogfood.windows-int.net/datasources('azsmnet7253')?api-version=2019-05-06" + "https://azs-7787.search-dogfood.windows-int.net/datasources('azsmnet1704')?api-version=2019-05-06" ], "request-id": [ - "535718da-de6d-401e-88fe-3933006c69f8" + "afc81547-6719-44b1-81bf-31bab24e1ce9" ], "elapsed-time": [ - "109" + "39" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:02:29 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5763.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E71008E03\\\"\",\r\n \"name\": \"azsmnet7253\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7787.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A015F5F6A9B\\\"\",\r\n \"name\": \"azsmnet1704\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet5643')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTY0MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet2733')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjczMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5643\",\r\n \"dataSourceName\": \"azsmnet7253\",\r\n \"targetIndexName\": \"azsmnet1061\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2733\",\r\n \"dataSourceName\": \"azsmnet1704\",\r\n \"targetIndexName\": \"azsmnet5392\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "a2b467a9-78c3-4485-80bf-55d43412f2cc" + "d1e0f3c9-e009-4257-a928-f582e35d7792" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "A4B0D7F53B34C12C4451C7FF1FA6E4D1" + "E69391F6D503D0069E1C8CE7C5D4B675" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E7337CDD1\"" + "W/\"0x8D71A016017C321\"" ], "Location": [ - "https://azs-5763.search-dogfood.windows-int.net/indexers('azsmnet5643')?api-version=2019-05-06" + "https://azs-7787.search-dogfood.windows-int.net/indexers('azsmnet2733')?api-version=2019-05-06" ], "request-id": [ - "a2b467a9-78c3-4485-80bf-55d43412f2cc" + "d1e0f3c9-e009-4257-a928-f582e35d7792" ], "elapsed-time": [ - "728" + "176" ], "OData-Version": [ "4.0" @@ -545,33 +542,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:02:30 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5763.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E7337CDD1\\\"\",\r\n \"name\": \"azsmnet5643\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7253\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1061\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7787.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A016017C321\\\"\",\r\n \"name\": \"azsmnet2733\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet1704\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5392\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9358/providers/Microsoft.Search/searchServices/azs-5763?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MzU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NzYzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3230/providers/Microsoft.Search/searchServices/azs-7787?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Nzg3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf1d7366-9e5d-4df1-a9fd-5c7606a7d438" + "2aedab7b-78a1-4e2c-9074-3afdc3a9190f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -581,41 +581,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:15 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bf1d7366-9e5d-4df1-a9fd-5c7606a7d438" + "2aedab7b-78a1-4e2c-9074-3afdc3a9190f" ], "request-id": [ - "bf1d7366-9e5d-4df1-a9fd-5c7606a7d438" + "2aedab7b-78a1-4e2c-9074-3afdc3a9190f" ], "elapsed-time": [ - "1092" + "1013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14950" + "14994" ], "x-ms-correlation-request-id": [ - "e3b29882-7e43-4c66-8329-5ba678cb28cc" + "822b8cfb-ba58-4234-bc83-3f26bc52c33b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202515Z:e3b29882-7e43-4c66-8329-5ba678cb28cc" + "NORTHEUROPE:20190806T000234Z:822b8cfb-ba58-4234-bc83-3f26bc52c33b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:02:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -624,13 +624,13 @@ ], "Names": { "GenerateName": [ - "azsmnet9358", - "azsmnet1061", - "azsmnet7253", - "azsmnet5643" + "azsmnet3230", + "azsmnet5392", + "azsmnet1704", + "azsmnet2733" ], "GenerateServiceName": [ - "azs-5763" + "azs-7787" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json index 6810ad343958..9d33dde2eb19 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c413b75-a3ce-4820-99fa-e6013e23f749" + "2a50249f-c7de-4bbd-bcb0-e78c01c20470" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1187" ], "x-ms-request-id": [ - "4f180684-a849-4e28-95c9-ffe0f7be1954" + "58b23dd0-0169-4e26-9952-fbf0dd210c5d" ], "x-ms-correlation-request-id": [ - "4f180684-a849-4e28-95c9-ffe0f7be1954" + "58b23dd0-0169-4e26-9952-fbf0dd210c5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202324Z:4f180684-a849-4e28-95c9-ffe0f7be1954" + "NORTHEUROPE:20190806T000456Z:58b23dd0-0169-4e26-9952-fbf0dd210c5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:56 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2741?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet449?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3fb1fd3-896f-4406-9004-bf39c9584a9a" + "17c6db0f-ffd0-42e8-8b8d-e13803df4cbf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:24 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1187" ], "x-ms-request-id": [ - "e7706454-f5e8-4871-b75d-a9ab9d6cb25c" + "850ed2c4-5c09-4afd-b6aa-a58c41e8a29f" ], "x-ms-correlation-request-id": [ - "e7706454-f5e8-4871-b75d-a9ab9d6cb25c" + "850ed2c4-5c09-4afd-b6aa-a58c41e8a29f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202325Z:e7706454-f5e8-4871-b75d-a9ab9d6cb25c" + "NORTHEUROPE:20190806T000457Z:850ed2c4-5c09-4afd-b6aa-a58c41e8a29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:57 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741\",\r\n \"name\": \"azsmnet2741\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449\",\r\n \"name\": \"azsmnet449\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741/providers/Microsoft.Search/searchServices/azs-1607?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjA3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449/providers/Microsoft.Search/searchServices/azs-5286?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTUyODY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ede18825-282d-40bf-a6ec-d536dfa3e7df" + "ccb1dae8-9033-4e25-a2ab-d20669dc3440" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:27 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A23%3A27.5137513Z'\"" + "W/\"datetime'2019-08-06T00%3A05%3A00.3456691Z'\"" ], "x-ms-request-id": [ - "ede18825-282d-40bf-a6ec-d536dfa3e7df" + "ccb1dae8-9033-4e25-a2ab-d20669dc3440" ], "request-id": [ - "ede18825-282d-40bf-a6ec-d536dfa3e7df" + "ccb1dae8-9033-4e25-a2ab-d20669dc3440" ], "elapsed-time": [ - "1014" + "1590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1191" ], "x-ms-correlation-request-id": [ - "570d66bf-48d7-47f5-9863-9947ecc7eeb2" + "e0b9b246-577f-4aea-bb3b-038102b89383" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202328Z:570d66bf-48d7-47f5-9863-9947ecc7eeb2" + "NORTHEUROPE:20190806T000500Z:e0b9b246-577f-4aea-bb3b-038102b89383" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:00 GMT" + ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741/providers/Microsoft.Search/searchServices/azs-1607\",\r\n \"name\": \"azs-1607\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449/providers/Microsoft.Search/searchServices/azs-5286\",\r\n \"name\": \"azs-5286\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741/providers/Microsoft.Search/searchServices/azs-1607/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjA3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449/providers/Microsoft.Search/searchServices/azs-5286/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTUyODYvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f511a8af-b586-46a4-abe8-5780c4fb2847" + "7cfc186f-e837-44ed-af04-2c12ee27e9b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:29 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f511a8af-b586-46a4-abe8-5780c4fb2847" + "7cfc186f-e837-44ed-af04-2c12ee27e9b5" ], "request-id": [ - "f511a8af-b586-46a4-abe8-5780c4fb2847" + "7cfc186f-e837-44ed-af04-2c12ee27e9b5" ], "elapsed-time": [ - "126" + "131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1191" ], "x-ms-correlation-request-id": [ - "bd5d8a49-d42e-4a14-91c7-ce5d32ada47d" + "6ba4f64a-4758-41fa-87c8-240a8153a16e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202329Z:bd5d8a49-d42e-4a14-91c7-ce5d32ada47d" + "NORTHEUROPE:20190806T000503Z:6ba4f64a-4758-41fa-87c8-240a8153a16e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:03 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"68A4ED890ABEB3F11805C5468CA74115\",\r\n \"secondaryKey\": \"43E0EA77E80B28A278872B45FE92E54F\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"75DCE549B8AE11E2DD45D27BAD98DEB0\",\r\n \"secondaryKey\": \"2E527F4F134B5A34FAC978B5D7D5A8C6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741/providers/Microsoft.Search/searchServices/azs-1607/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjA3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449/providers/Microsoft.Search/searchServices/azs-5286/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTUyODYvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5a50bc-fe84-4f3c-bdd8-fe4f69db5be5" + "1312a234-8b58-4ff7-ac19-bf9f2fa2b256" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:29 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0e5a50bc-fe84-4f3c-bdd8-fe4f69db5be5" + "1312a234-8b58-4ff7-ac19-bf9f2fa2b256" ], "request-id": [ - "0e5a50bc-fe84-4f3c-bdd8-fe4f69db5be5" + "1312a234-8b58-4ff7-ac19-bf9f2fa2b256" ], "elapsed-time": [ - "90" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14997" ], "x-ms-correlation-request-id": [ - "b784034c-48e2-42bd-90c1-a724ad38ce39" + "cfe34093-9d1a-4abd-9d4a-a159171a3242" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202330Z:b784034c-48e2-42bd-90c1-a724ad38ce39" + "NORTHEUROPE:20190806T000504Z:cfe34093-9d1a-4abd-9d4a-a159171a3242" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:05:03 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"FF1656411C23F01F3BE0FE8106DDC0B9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"CF083F1577BA5C03B6238F640CB8EA60\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4816\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6171\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "0fd93568-3a41-4179-81ae-0d8c297f5156" + "79e22a5b-56a6-4d27-b125-5ea1fb4ce09c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "68A4ED890ABEB3F11805C5468CA74115" + "75DCE549B8AE11E2DD45D27BAD98DEB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E37EC2983\"" + "W/\"0x8D71A01BCF8D09A\"" ], "Location": [ - "https://azs-1607.search-dogfood.windows-int.net/indexes('azsmnet4816')?api-version=2019-05-06" + "https://azs-5286.search-dogfood.windows-int.net/indexes('azsmnet6171')?api-version=2019-05-06" ], "request-id": [ - "0fd93568-3a41-4179-81ae-0d8c297f5156" + "79e22a5b-56a6-4d27-b125-5ea1fb4ce09c" ], "elapsed-time": [ - "724" + "1505" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:05:06 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1607.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E37EC2983\\\"\",\r\n \"name\": \"azsmnet4816\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5286.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01BCF8D09A\\\"\",\r\n \"name\": \"azsmnet6171\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5960\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8920\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "63ebecb5-671f-439c-8564-7e5041c410a2" + "307d849e-0b7d-492e-ba2a-43c071d8527e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "68A4ED890ABEB3F11805C5468CA74115" + "75DCE549B8AE11E2DD45D27BAD98DEB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:32 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E3801D9AA\"" + "W/\"0x8D71A01BD133CC3\"" ], "Location": [ - "https://azs-1607.search-dogfood.windows-int.net/datasources('azsmnet5960')?api-version=2019-05-06" + "https://azs-5286.search-dogfood.windows-int.net/datasources('azsmnet8920')?api-version=2019-05-06" ], "request-id": [ - "63ebecb5-671f-439c-8564-7e5041c410a2" + "307d849e-0b7d-492e-ba2a-43c071d8527e" ], "elapsed-time": [ - "29" + "34" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:05:06 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1607.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E3801D9AA\\\"\",\r\n \"name\": \"azsmnet5960\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5286.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01BD133CC3\\\"\",\r\n \"name\": \"azsmnet8920\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { @@ -490,22 +490,22 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "05f5c3dc-ae87-4dfe-b1e4-4a17033a1d9d" + "3b0119c9-3510-4e1f-a7c0-9ad853e3ed5f" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "68A4ED890ABEB3F11805C5468CA74115" + "75DCE549B8AE11E2DD45D27BAD98DEB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -518,23 +518,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:34 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E38E48154\"" + "W/\"0x8D71A01BDB17795\"" ], "Location": [ - "https://azs-1607.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-5286.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "05f5c3dc-ae87-4dfe-b1e4-4a17033a1d9d" + "3b0119c9-3510-4e1f-a7c0-9ad853e3ed5f" ], "elapsed-time": [ - "286" + "356" ], "OData-Version": [ "4.0" @@ -545,42 +542,45 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1061" + "Date": [ + "Tue, 06 Aug 2019 00:05:07 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1061" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1607.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E38E48154\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5286.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01BDB17795\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9656')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTY1NicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet9555')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTU1NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9656\",\r\n \"dataSourceName\": \"azsmnet5960\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet4816\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\"\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\"\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9555\",\r\n \"dataSourceName\": \"azsmnet8920\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet6171\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\"\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "9e924a8e-7590-4587-ab00-add4952b603d" + "9048cdd3-0ec7-4bc0-b4f2-5cc13b7e9839" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "68A4ED890ABEB3F11805C5468CA74115" + "75DCE549B8AE11E2DD45D27BAD98DEB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -593,23 +593,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E3A15D187\"" + "W/\"0x8D71A01BDDB50C6\"" ], "Location": [ - "https://azs-1607.search-dogfood.windows-int.net/indexers('azsmnet9656')?api-version=2019-05-06" + "https://azs-5286.search-dogfood.windows-int.net/indexers('azsmnet9555')?api-version=2019-05-06" ], "request-id": [ - "9e924a8e-7590-4587-ab00-add4952b603d" + "9048cdd3-0ec7-4bc0-b4f2-5cc13b7e9839" ], "elapsed-time": [ - "2023" + "261" ], "OData-Version": [ "4.0" @@ -620,33 +617,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "594" + "Date": [ + "Tue, 06 Aug 2019 00:05:07 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "594" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1607.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E3A15D187\\\"\",\r\n \"name\": \"azsmnet9656\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5960\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet4816\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [],\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\",\r\n \"mappingFunction\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5286.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01BDDB50C6\\\"\",\r\n \"name\": \"azsmnet9555\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8920\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet6171\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [],\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\",\r\n \"mappingFunction\": null\r\n }\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2741/providers/Microsoft.Search/searchServices/azs-1607?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjA3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet449/providers/Microsoft.Search/searchServices/azs-5286?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTUyODY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceec724f-04b1-4502-bfc4-748b72bdfe66" + "b9693dc6-c14e-46ad-90e1-906547b75c71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -656,41 +656,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:40 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ceec724f-04b1-4502-bfc4-748b72bdfe66" + "b9693dc6-c14e-46ad-90e1-906547b75c71" ], "request-id": [ - "ceec724f-04b1-4502-bfc4-748b72bdfe66" + "b9693dc6-c14e-46ad-90e1-906547b75c71" ], "elapsed-time": [ - "2063" + "904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14987" ], "x-ms-correlation-request-id": [ - "54c99ac6-4da3-4c4a-97c7-ea2b4cf69bab" + "99377b84-e1b7-4bbb-a180-98b51315670a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202341Z:54c99ac6-4da3-4c4a-97c7-ea2b4cf69bab" + "NORTHEUROPE:20190806T000510Z:99377b84-e1b7-4bbb-a180-98b51315670a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:05:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -699,13 +699,13 @@ ], "Names": { "GenerateName": [ - "azsmnet2741", - "azsmnet4816", - "azsmnet5960", - "azsmnet9656" + "azsmnet449", + "azsmnet6171", + "azsmnet8920", + "azsmnet9555" ], "GenerateServiceName": [ - "azs-1607" + "azs-5286" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json index 46460f437c2a..ca19c23e4f73 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73ede9f8-88b7-4de6-90d0-0812e92d6dff" + "a4f803dd-60af-44a4-8fbc-270f92be5171" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1193" ], "x-ms-request-id": [ - "9af7415c-b413-4081-b069-4e7c708162e4" + "f1225f3c-ef60-471a-a41f-09b782a142ac" ], "x-ms-correlation-request-id": [ - "9af7415c-b413-4081-b069-4e7c708162e4" + "f1225f3c-ef60-471a-a41f-09b782a142ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202751Z:9af7415c-b413-4081-b069-4e7c708162e4" + "NORTHEUROPE:20190806T000409Z:f1225f3c-ef60-471a-a41f-09b782a142ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:08 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8703?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NzAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8030?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18ce7b99-90b5-4b02-ba36-bae032c6d7b7" + "0016691b-89c2-42d6-ba52-00c71a30629f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1193" ], "x-ms-request-id": [ - "04c97b1e-925f-4f51-adae-34e9cd28d313" + "e0b2bc34-adc0-4ca8-832e-49c0c3d731e0" ], "x-ms-correlation-request-id": [ - "04c97b1e-925f-4f51-adae-34e9cd28d313" + "e0b2bc34-adc0-4ca8-832e-49c0c3d731e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202752Z:04c97b1e-925f-4f51-adae-34e9cd28d313" + "NORTHEUROPE:20190806T000409Z:e0b2bc34-adc0-4ca8-832e-49c0c3d731e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:08 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703\",\r\n \"name\": \"azsmnet8703\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030\",\r\n \"name\": \"azsmnet8030\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703/providers/Microsoft.Search/searchServices/azs-2061?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDYxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030/providers/Microsoft.Search/searchServices/azs-8008?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ca21adc7-366a-4dcf-b01a-734c5715d783" + "ad1eb97b-f58a-4187-94f1-8a64bbd6851f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:55 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A27%3A55.2701824Z'\"" + "W/\"datetime'2019-08-06T00%3A04%3A11.7065376Z'\"" ], "x-ms-request-id": [ - "ca21adc7-366a-4dcf-b01a-734c5715d783" + "ad1eb97b-f58a-4187-94f1-8a64bbd6851f" ], "request-id": [ - "ca21adc7-366a-4dcf-b01a-734c5715d783" + "ad1eb97b-f58a-4187-94f1-8a64bbd6851f" ], "elapsed-time": [ - "946" + "885" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1192" ], "x-ms-correlation-request-id": [ - "37f9c003-7663-408b-82bb-4c19b680f1d4" + "26471275-e384-4dcb-8a78-35c621b77f9b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202755Z:37f9c003-7663-408b-82bb-4c19b680f1d4" + "NORTHEUROPE:20190806T000412Z:26471275-e384-4dcb-8a78-35c621b77f9b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:11 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703/providers/Microsoft.Search/searchServices/azs-2061\",\r\n \"name\": \"azs-2061\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030/providers/Microsoft.Search/searchServices/azs-8008\",\r\n \"name\": \"azs-8008\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703/providers/Microsoft.Search/searchServices/azs-2061/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDYxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030/providers/Microsoft.Search/searchServices/azs-8008/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDA4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc923e48-0147-4402-8aaf-0820901706ec" + "5b3682f3-2c6a-425c-b059-f7231efcc58c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:57 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,10 +231,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc923e48-0147-4402-8aaf-0820901706ec" + "5b3682f3-2c6a-425c-b059-f7231efcc58c" ], "request-id": [ - "bc923e48-0147-4402-8aaf-0820901706ec" + "5b3682f3-2c6a-425c-b059-f7231efcc58c" ], "elapsed-time": [ "159" @@ -246,17 +243,20 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1192" ], "x-ms-correlation-request-id": [ - "2264f122-9898-4ffe-ac91-9e71895d39fb" + "6c698065-be38-498a-bfd4-962e2997b40c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202757Z:2264f122-9898-4ffe-ac91-9e71895d39fb" + "NORTHEUROPE:20190806T000413Z:6c698065-be38-498a-bfd4-962e2997b40c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:12 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"1380AA01D128A5EC53AA427DB050858B\",\r\n \"secondaryKey\": \"DD00FF04EEF145D7ADDC995FFD586671\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"D803C643EE7C2D63E3B2B0CAD3CE2651\",\r\n \"secondaryKey\": \"C0DE517C3A6B5E398CB5F60E9720D4BE\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703/providers/Microsoft.Search/searchServices/azs-2061/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDYxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030/providers/Microsoft.Search/searchServices/azs-8008/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDA4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffa26791-2b80-412b-82d3-05cd529ee581" + "ddd18da4-0d1b-4e49-87d2-c70d4c5be6b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:57 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ffa26791-2b80-412b-82d3-05cd529ee581" + "ddd18da4-0d1b-4e49-87d2-c70d4c5be6b5" ], "request-id": [ - "ffa26791-2b80-412b-82d3-05cd529ee581" + "ddd18da4-0d1b-4e49-87d2-c70d4c5be6b5" ], "elapsed-time": [ - "99" + "126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14998" ], "x-ms-correlation-request-id": [ - "5b14b7c3-20ff-4370-b83e-8a3219a34d2e" + "bc7a5719-2290-4296-aeb8-9c258cafc84a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202758Z:5b14b7c3-20ff-4370-b83e-8a3219a34d2e" + "NORTHEUROPE:20190806T000414Z:bc7a5719-2290-4296-aeb8-9c258cafc84a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:14 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"35AC8541CA8D2AF5CC8FAF59E378B657\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"27B352C3015ADF38A153EEF6A3A62BE1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet487\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6064\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "b37e5f8c-174d-45fa-94b9-095cc55a68e3" + "6a6c8f30-e150-4423-8c01-a3a9e73d03fa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "1380AA01D128A5EC53AA427DB050858B" + "D803C643EE7C2D63E3B2B0CAD3CE2651" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2349" + "2350" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ED7C3138D\"" + "W/\"0x8D71A019F1B6475\"" ], "Location": [ - "https://azs-2061.search-dogfood.windows-int.net/indexes('azsmnet487')?api-version=2019-05-06" + "https://azs-8008.search-dogfood.windows-int.net/indexes('azsmnet6064')?api-version=2019-05-06" ], "request-id": [ - "b37e5f8c-174d-45fa-94b9-095cc55a68e3" + "6a6c8f30-e150-4423-8c01-a3a9e73d03fa" ], "elapsed-time": [ - "1509" + "1480" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2535" + "Date": [ + "Tue, 06 Aug 2019 00:04:16 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2061.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ED7C3138D\\\"\",\r\n \"name\": \"azsmnet487\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8008.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A019F1B6475\\\"\",\r\n \"name\": \"azsmnet6064\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8637\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7646\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "19a1b589-c0ce-4da2-ad65-af575c0785f3" + "ea25f0c1-c6e3-408b-94f7-6bd61ebf4eaa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "1380AA01D128A5EC53AA427DB050858B" + "D803C643EE7C2D63E3B2B0CAD3CE2651" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ED7D93915\"" + "W/\"0x8D71A019F37A5CC\"" ], "Location": [ - "https://azs-2061.search-dogfood.windows-int.net/datasources('azsmnet8637')?api-version=2019-05-06" + "https://azs-8008.search-dogfood.windows-int.net/datasources('azsmnet7646')?api-version=2019-05-06" ], "request-id": [ - "19a1b589-c0ce-4da2-ad65-af575c0785f3" + "ea25f0c1-c6e3-408b-94f7-6bd61ebf4eaa" ], "elapsed-time": [ - "29" + "51" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:04:16 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2061.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ED7D93915\\\"\",\r\n \"name\": \"azsmnet8637\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8008.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A019F37A5CC\\\"\",\r\n \"name\": \"azsmnet7646\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8993')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODk5MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet773')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzczJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8993\",\r\n \"dataSourceName\": \"azsmnet8637\",\r\n \"targetIndexName\": \"azsmnet487\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet773\",\r\n \"dataSourceName\": \"azsmnet7646\",\r\n \"targetIndexName\": \"azsmnet6064\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "3ce61466-79ae-4ac9-a124-a9ae0e5e453d" + "0f9543fc-ac4b-429b-a0fe-77f09dfc8cf0" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "1380AA01D128A5EC53AA427DB050858B" + "D803C643EE7C2D63E3B2B0CAD3CE2651" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1126" + "1260" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:02 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ED893405F\"" + "W/\"0x8D71A019FCD5306\"" ], "Location": [ - "https://azs-2061.search-dogfood.windows-int.net/indexers('azsmnet8993')?api-version=2019-05-06" + "https://azs-8008.search-dogfood.windows-int.net/indexers('azsmnet773')?api-version=2019-05-06" ], "request-id": [ - "3ce61466-79ae-4ac9-a124-a9ae0e5e453d" + "0f9543fc-ac4b-429b-a0fe-77f09dfc8cf0" ], "elapsed-time": [ - "203" + "235" ], "OData-Version": [ "4.0" @@ -545,65 +542,65 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1110" + "Date": [ + "Tue, 06 Aug 2019 00:04:17 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1178" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2061.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ED893405F\\\"\",\r\n \"name\": \"azsmnet8993\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8637\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet487\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8008.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A019FCD5306\\\"\",\r\n \"name\": \"azsmnet773\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7646\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6064\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8993')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODk5MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet773')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzczJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8993\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet8637\",\r\n \"targetIndexName\": \"azsmnet487\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4ED893405F\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet773\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7646\",\r\n \"targetIndexName\": \"azsmnet6064\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A019FCD5306\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "ce95fe32-8b71-49ce-a3df-ce97d501fbcb" + "48d00491-d29e-4549-afe7-88d33ce7aa96" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-None-Match": [ "*" ], "api-key": [ - "1380AA01D128A5EC53AA427DB050858B" + "D803C643EE7C2D63E3B2B0CAD3CE2651" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1283" + "1417" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:02 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "ce95fe32-8b71-49ce-a3df-ce97d501fbcb" + "48d00491-d29e-4549-afe7-88d33ce7aa96" ], "elapsed-time": [ "12" @@ -617,8 +614,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "160" + "Date": [ + "Tue, 06 Aug 2019 00:04:17 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -628,25 +625,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "160" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"\r\n }\r\n}", "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8703/providers/Microsoft.Search/searchServices/azs-2061?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDYxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8030/providers/Microsoft.Search/searchServices/azs-8008?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b7210a7-1be5-4325-8476-305461f34d6c" + "edd84561-88ae-4327-8395-eb6216522c5b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -656,41 +656,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:28:04 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4b7210a7-1be5-4325-8476-305461f34d6c" + "edd84561-88ae-4327-8395-eb6216522c5b" ], "request-id": [ - "4b7210a7-1be5-4325-8476-305461f34d6c" + "edd84561-88ae-4327-8395-eb6216522c5b" ], "elapsed-time": [ - "720" + "651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14945" + "14991" ], "x-ms-correlation-request-id": [ - "055a4559-10b2-4948-90f8-1051fe05f556" + "df76c752-2bb3-4c89-8280-a3692d18732a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202805Z:055a4559-10b2-4948-90f8-1051fe05f556" + "NORTHEUROPE:20190806T000420Z:df76c752-2bb3-4c89-8280-a3692d18732a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:04:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -699,13 +699,13 @@ ], "Names": { "GenerateName": [ - "azsmnet8703", - "azsmnet487", - "azsmnet8637", - "azsmnet8993" + "azsmnet8030", + "azsmnet6064", + "azsmnet7646", + "azsmnet773" ], "GenerateServiceName": [ - "azs-2061" + "azs-8008" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json index 6815dc08740b..49d96d591122 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdaa246c-5fb0-49bb-920a-9929f9393034" + "e0680dbb-1f42-45a4-ba23-ab71dd60fbf2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1195" ], "x-ms-request-id": [ - "e429f984-f8f8-4931-9f83-2340c0ede83c" + "ad186aa2-da63-482e-8062-b377dcbb6c70" ], "x-ms-correlation-request-id": [ - "e429f984-f8f8-4931-9f83-2340c0ede83c" + "ad186aa2-da63-482e-8062-b377dcbb6c70" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202607Z:e429f984-f8f8-4931-9f83-2340c0ede83c" + "NORTHEUROPE:20190806T000113Z:ad186aa2-da63-482e-8062-b377dcbb6c70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:13 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1176?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMTc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet633?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "78ab66b6-82b5-4e70-be98-bc99721257c2" + "09aa2b54-4ee5-46fe-b3da-7ef74bd63e26" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1195" ], "x-ms-request-id": [ - "2d482a30-58c0-49da-ad20-bafef512fbd0" + "fe5eb64b-e7a4-42b6-ae77-74d78a29edeb" ], "x-ms-correlation-request-id": [ - "2d482a30-58c0-49da-ad20-bafef512fbd0" + "fe5eb64b-e7a4-42b6-ae77-74d78a29edeb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202607Z:2d482a30-58c0-49da-ad20-bafef512fbd0" + "NORTHEUROPE:20190806T000114Z:fe5eb64b-e7a4-42b6-ae77-74d78a29edeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:13 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176\",\r\n \"name\": \"azsmnet1176\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633\",\r\n \"name\": \"azsmnet633\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176/providers/Microsoft.Search/searchServices/azs-3795?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633/providers/Microsoft.Search/searchServices/azs-4077?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTQwNzc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b405995-d808-4573-a40e-09524bfdcaa7" + "2828f55e-b709-4186-9994-f68f175e1bec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A26%3A10.7135679Z'\"" + "W/\"datetime'2019-08-06T00%3A01%3A16.2231931Z'\"" ], "x-ms-request-id": [ - "9b405995-d808-4573-a40e-09524bfdcaa7" + "2828f55e-b709-4186-9994-f68f175e1bec" ], "request-id": [ - "9b405995-d808-4573-a40e-09524bfdcaa7" + "2828f55e-b709-4186-9994-f68f175e1bec" ], "elapsed-time": [ - "1299" + "1081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1195" ], "x-ms-correlation-request-id": [ - "67acb54e-fbde-49e7-96a7-783eb3208259" + "7581e737-0e95-4081-a4c8-de49806f9fe0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202611Z:67acb54e-fbde-49e7-96a7-783eb3208259" + "NORTHEUROPE:20190806T000116Z:7581e737-0e95-4081-a4c8-de49806f9fe0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:16 GMT" + ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176/providers/Microsoft.Search/searchServices/azs-3795\",\r\n \"name\": \"azs-3795\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633/providers/Microsoft.Search/searchServices/azs-4077\",\r\n \"name\": \"azs-4077\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176/providers/Microsoft.Search/searchServices/azs-3795/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633/providers/Microsoft.Search/searchServices/azs-4077/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTQwNzcvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd9c295-01ef-4023-9e6d-3b6a20e121d0" + "58469e78-95f6-4d06-b0e7-a68bc7b754c0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:13 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4fd9c295-01ef-4023-9e6d-3b6a20e121d0" + "58469e78-95f6-4d06-b0e7-a68bc7b754c0" ], "request-id": [ - "4fd9c295-01ef-4023-9e6d-3b6a20e121d0" + "58469e78-95f6-4d06-b0e7-a68bc7b754c0" ], "elapsed-time": [ - "432" + "117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1195" ], "x-ms-correlation-request-id": [ - "b4e94f89-94a6-4bc4-a1ed-48cb6e9422ca" + "23cc57e2-5061-456c-b8c7-6209596ec61b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202613Z:b4e94f89-94a6-4bc4-a1ed-48cb6e9422ca" + "NORTHEUROPE:20190806T000118Z:23cc57e2-5061-456c-b8c7-6209596ec61b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:17 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9A0870F7BB705FA26D73037BE14EFA54\",\r\n \"secondaryKey\": \"61D0AA3BE479723574778BA979965EA1\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"7DE3CE0F6ABEBFD2C533B0FDDE411036\",\r\n \"secondaryKey\": \"C8CA1B8FDAFE52866CFFDCE5AB35655E\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176/providers/Microsoft.Search/searchServices/azs-3795/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633/providers/Microsoft.Search/searchServices/azs-4077/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTQwNzcvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d289d92-d3d8-426c-8ee9-3e487ed134a2" + "154f9d40-e604-4107-9ee9-cb835468411e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:14 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6d289d92-d3d8-426c-8ee9-3e487ed134a2" + "154f9d40-e604-4107-9ee9-cb835468411e" ], "request-id": [ - "6d289d92-d3d8-426c-8ee9-3e487ed134a2" + "154f9d40-e604-4107-9ee9-cb835468411e" ], "elapsed-time": [ - "352" + "105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14996" ], "x-ms-correlation-request-id": [ - "b1a23c41-c9d5-4ea5-b3e9-825b44b7b1a0" + "157f4834-fcb9-44bf-95df-fc4c555849ca" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202614Z:b1a23c41-c9d5-4ea5-b3e9-825b44b7b1a0" + "NORTHEUROPE:20190806T000118Z:157f4834-fcb9-44bf-95df-fc4c555849ca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:17 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7AFD42CFB9483A70851DCD8F302F5435\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"1C140B69E510E6699E110581AA38516A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8779\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4318\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "9cf07367-0ed0-475e-b5ff-2b810aa85304" + "f8a00a0b-a1cb-4042-951d-fb650c9841da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9A0870F7BB705FA26D73037BE14EFA54" + "7DE3CE0F6ABEBFD2C533B0FDDE411036" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E99DC7396\"" + "W/\"0x8D71A013692E34B\"" ], "Location": [ - "https://azs-3795.search-dogfood.windows-int.net/indexes('azsmnet8779')?api-version=2019-05-06" + "https://azs-4077.search-dogfood.windows-int.net/indexes('azsmnet4318')?api-version=2019-05-06" ], "request-id": [ - "9cf07367-0ed0-475e-b5ff-2b810aa85304" + "f8a00a0b-a1cb-4042-951d-fb650c9841da" ], "elapsed-time": [ - "1302" + "1490" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:01:20 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3795.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E99DC7396\\\"\",\r\n \"name\": \"azsmnet8779\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4077.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A013692E34B\\\"\",\r\n \"name\": \"azsmnet4318\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8479\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7866\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "a3742bdc-7511-416d-97fb-9782f0e1382c" + "34ae280e-68cc-4154-8dde-df233829bf27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9A0870F7BB705FA26D73037BE14EFA54" + "7DE3CE0F6ABEBFD2C533B0FDDE411036" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:17 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E99F24AC6\"" + "W/\"0x8D71A0136AD285D\"" ], "Location": [ - "https://azs-3795.search-dogfood.windows-int.net/datasources('azsmnet8479')?api-version=2019-05-06" + "https://azs-4077.search-dogfood.windows-int.net/datasources('azsmnet7866')?api-version=2019-05-06" ], "request-id": [ - "a3742bdc-7511-416d-97fb-9782f0e1382c" + "34ae280e-68cc-4154-8dde-df233829bf27" ], "elapsed-time": [ - "27" + "29" ], "OData-Version": [ "4.0" @@ -470,74 +467,74 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:01:20 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3795.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E99F24AC6\\\"\",\r\n \"name\": \"azsmnet8479\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4077.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0136AD285D\\\"\",\r\n \"name\": \"azsmnet7866\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9927')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTkyNycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet4864')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDg2NCcpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9927\",\r\n \"dataSourceName\": \"azsmnet8479\",\r\n \"targetIndexName\": \"azsmnet8779\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4864\",\r\n \"dataSourceName\": \"azsmnet7866\",\r\n \"targetIndexName\": \"azsmnet4318\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "3ccac76c-c85e-4dab-a512-4592388b03e8" + "3f4160fd-0ec7-49fd-846f-462538832364" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-None-Match": [ "*" ], "api-key": [ - "9A0870F7BB705FA26D73037BE14EFA54" + "7DE3CE0F6ABEBFD2C533B0FDDE411036" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E9AC3D757\"" + "W/\"0x8D71A0137398494\"" ], "Location": [ - "https://azs-3795.search-dogfood.windows-int.net/indexers('azsmnet9927')?api-version=2019-05-06" + "https://azs-4077.search-dogfood.windows-int.net/indexers('azsmnet4864')?api-version=2019-05-06" ], "request-id": [ - "3ccac76c-c85e-4dab-a512-4592388b03e8" + "3f4160fd-0ec7-49fd-846f-462538832364" ], "elapsed-time": [ - "170" + "201" ], "OData-Version": [ "4.0" @@ -548,33 +545,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:01:22 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3795.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E9AC3D757\\\"\",\r\n \"name\": \"azsmnet9927\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8479\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8779\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4077.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0137398494\\\"\",\r\n \"name\": \"azsmnet4864\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7866\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4318\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1176/providers/Microsoft.Search/searchServices/azs-3795?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet633/providers/Microsoft.Search/searchServices/azs-4077?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTQwNzc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fba9cc64-086e-4e10-9b63-0a9355b2cce4" + "5969bf68-539e-4b82-93c0-3364157a53be" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -584,41 +584,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fba9cc64-086e-4e10-9b63-0a9355b2cce4" + "5969bf68-539e-4b82-93c0-3364157a53be" ], "request-id": [ - "fba9cc64-086e-4e10-9b63-0a9355b2cce4" + "5969bf68-539e-4b82-93c0-3364157a53be" ], "elapsed-time": [ - "1491" + "615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14995" ], "x-ms-correlation-request-id": [ - "133266d2-983c-4ffc-8513-7872bc292453" + "883545ea-dfe9-4e24-ac20-1158aaab8e43" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202621Z:133266d2-983c-4ffc-8513-7872bc292453" + "NORTHEUROPE:20190806T000124Z:883545ea-dfe9-4e24-ac20-1158aaab8e43" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:01:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -627,13 +627,13 @@ ], "Names": { "GenerateName": [ - "azsmnet1176", - "azsmnet8779", - "azsmnet8479", - "azsmnet9927" + "azsmnet633", + "azsmnet4318", + "azsmnet7866", + "azsmnet4864" ], "GenerateServiceName": [ - "azs-3795" + "azs-4077" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json index 8b6c6e755d5c..34216e7e31d4 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc5410c3-f844-4c22-b3b9-71b344abe91e" + "f7e0b565-076b-40cb-972e-b9991f6b8cf4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1181" ], "x-ms-request-id": [ - "d8ac93d1-48ff-4b6a-adb5-a12600695143" + "dc60d92d-3400-406f-a8c2-ae18a14baa6e" ], "x-ms-correlation-request-id": [ - "d8ac93d1-48ff-4b6a-adb5-a12600695143" + "dc60d92d-3400-406f-a8c2-ae18a14baa6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202627Z:d8ac93d1-48ff-4b6a-adb5-a12600695143" + "NORTHEUROPE:20190806T000238Z:dc60d92d-3400-406f-a8c2-ae18a14baa6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:38 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5157?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet108?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0dc8a409-c906-48a3-9b92-79c3e687e6a2" + "d1fdd699-a746-4b51-ba38-a91e65f1e5b6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:27 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1191" ], "x-ms-request-id": [ - "e6b1f35b-8ef5-4064-879d-bea5e79efc4a" + "f14f6c7f-ccc6-4095-84df-4f12d674655c" ], "x-ms-correlation-request-id": [ - "e6b1f35b-8ef5-4064-879d-bea5e79efc4a" + "f14f6c7f-ccc6-4095-84df-4f12d674655c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202628Z:e6b1f35b-8ef5-4064-879d-bea5e79efc4a" + "NORTHEUROPE:20190806T000239Z:f14f6c7f-ccc6-4095-84df-4f12d674655c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:38 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157\",\r\n \"name\": \"azsmnet5157\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108\",\r\n \"name\": \"azsmnet108\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157/providers/Microsoft.Search/searchServices/azs-3712?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzEyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108/providers/Microsoft.Search/searchServices/azs-9001?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkwMDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "93ff2c85-7b88-4639-8601-4bf8be62b5f4" + "6410f5db-045f-4121-9365-06d375a3010f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A26%3A30.8959897Z'\"" + "W/\"datetime'2019-08-06T00%3A02%3A42.3471664Z'\"" ], "x-ms-request-id": [ - "93ff2c85-7b88-4639-8601-4bf8be62b5f4" + "6410f5db-045f-4121-9365-06d375a3010f" ], "request-id": [ - "93ff2c85-7b88-4639-8601-4bf8be62b5f4" + "6410f5db-045f-4121-9365-06d375a3010f" ], "elapsed-time": [ - "851" + "1559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1192" ], "x-ms-correlation-request-id": [ - "2c6dc4df-d01b-4747-9f42-71f0b4646996" + "065fbe8b-c634-4976-a6c2-6732fca23e89" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202631Z:2c6dc4df-d01b-4747-9f42-71f0b4646996" + "NORTHEUROPE:20190806T000242Z:065fbe8b-c634-4976-a6c2-6732fca23e89" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:42 GMT" + ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157/providers/Microsoft.Search/searchServices/azs-3712\",\r\n \"name\": \"azs-3712\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108/providers/Microsoft.Search/searchServices/azs-9001\",\r\n \"name\": \"azs-9001\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157/providers/Microsoft.Search/searchServices/azs-3712/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzEyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108/providers/Microsoft.Search/searchServices/azs-9001/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkwMDEvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b42627e4-5715-47d8-af57-3ea2cdb88f10" + "da10e972-cc67-4e08-bbe1-f2af0bb8f774" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b42627e4-5715-47d8-af57-3ea2cdb88f10" + "da10e972-cc67-4e08-bbe1-f2af0bb8f774" ], "request-id": [ - "b42627e4-5715-47d8-af57-3ea2cdb88f10" + "da10e972-cc67-4e08-bbe1-f2af0bb8f774" ], "elapsed-time": [ - "128" + "89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1192" ], "x-ms-correlation-request-id": [ - "12a477bf-b7cf-46a7-9a85-6f1d6d09f037" + "96b50f30-f887-4c84-9822-39a9baa675fe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202633Z:12a477bf-b7cf-46a7-9a85-6f1d6d09f037" + "NORTHEUROPE:20190806T000244Z:96b50f30-f887-4c84-9822-39a9baa675fe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:43 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"AC7B4A634BB9998B56F65D8740B95014\",\r\n \"secondaryKey\": \"0EBA37258D9628091F56B458F0B3D0CA\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"26559CAD1A5267CE688C3DE6E32A8E6E\",\r\n \"secondaryKey\": \"C6BD216613A99EA74B7EE832D58CB70A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157/providers/Microsoft.Search/searchServices/azs-3712/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzEyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108/providers/Microsoft.Search/searchServices/azs-9001/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkwMDEvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf6fd6b1-b0f9-4e4c-9407-bc47644b565c" + "2f04844b-584f-4cfa-91d0-08f398760778" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cf6fd6b1-b0f9-4e4c-9407-bc47644b565c" + "2f04844b-584f-4cfa-91d0-08f398760778" ], "request-id": [ - "cf6fd6b1-b0f9-4e4c-9407-bc47644b565c" + "2f04844b-584f-4cfa-91d0-08f398760778" ], "elapsed-time": [ - "87" + "239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14994" ], "x-ms-correlation-request-id": [ - "add0c51e-b6a3-434a-b207-84635c70299c" + "e8a65e1d-5ee4-48e7-926b-7e1b0886762f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202633Z:add0c51e-b6a3-434a-b207-84635c70299c" + "NORTHEUROPE:20190806T000244Z:e8a65e1d-5ee4-48e7-926b-7e1b0886762f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:44 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6CF512CAFC1C767B57776FC9A3EE691B\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"8A70C0A0247C1A784E0B853FF262D0D3\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7509\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1023\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "a329883f-bd53-46ba-85bf-90893da076f3" + "56fd2518-6c56-4c6f-af7f-fa95ac7415e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "AC7B4A634BB9998B56F65D8740B95014" + "26559CAD1A5267CE688C3DE6E32A8E6E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EA5A51323\"" + "W/\"0x8D71A0169FEA4C7\"" ], "Location": [ - "https://azs-3712.search-dogfood.windows-int.net/indexes('azsmnet7509')?api-version=2019-05-06" + "https://azs-9001.search-dogfood.windows-int.net/indexes('azsmnet1023')?api-version=2019-05-06" ], "request-id": [ - "a329883f-bd53-46ba-85bf-90893da076f3" + "56fd2518-6c56-4c6f-af7f-fa95ac7415e9" ], "elapsed-time": [ - "796" + "1387" ], "OData-Version": [ "4.0" @@ -398,68 +395,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:02:46 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3712.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EA5A51323\\\"\",\r\n \"name\": \"azsmnet7509\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9001.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0169FEA4C7\\\"\",\r\n \"name\": \"azsmnet1023\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8542\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet225\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "bd605219-a551-4311-804d-905384d7a7ce" + "717de96c-5d52-41cf-b5eb-94a7b69dd048" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "AC7B4A634BB9998B56F65D8740B95014" + "26559CAD1A5267CE688C3DE6E32A8E6E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:36 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EA5BBADDD\"" + "W/\"0x8D71A016A13432F\"" ], "Location": [ - "https://azs-3712.search-dogfood.windows-int.net/datasources('azsmnet8542')?api-version=2019-05-06" + "https://azs-9001.search-dogfood.windows-int.net/datasources('azsmnet225')?api-version=2019-05-06" ], "request-id": [ - "bd605219-a551-4311-804d-905384d7a7ce" + "717de96c-5d52-41cf-b5eb-94a7b69dd048" ], "elapsed-time": [ - "28" + "32" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:02:46 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "363" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3712.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EA5BBADDD\\\"\",\r\n \"name\": \"azsmnet8542\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9001.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A016A13432F\\\"\",\r\n \"name\": \"azsmnet225\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet670')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjcwJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexers('azsmnet6213')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjIxMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet670\",\r\n \"dataSourceName\": \"azsmnet8542\",\r\n \"targetIndexName\": \"azsmnet7509\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6213\",\r\n \"dataSourceName\": \"azsmnet225\",\r\n \"targetIndexName\": \"azsmnet1023\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "025eecca-7765-4fd9-8f60-21a7ae5da916" + "77d5fe03-71e6-4925-b3f9-19ba584bbbd0" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "AC7B4A634BB9998B56F65D8740B95014" + "26559CAD1A5267CE688C3DE6E32A8E6E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1126" + "1260" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:39 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EA74AEBFC\"" + "W/\"0x8D71A016B7FD50C\"" ], "Location": [ - "https://azs-3712.search-dogfood.windows-int.net/indexers('azsmnet670')?api-version=2019-05-06" + "https://azs-9001.search-dogfood.windows-int.net/indexers('azsmnet6213')?api-version=2019-05-06" ], "request-id": [ - "025eecca-7765-4fd9-8f60-21a7ae5da916" + "77d5fe03-71e6-4925-b3f9-19ba584bbbd0" ], "elapsed-time": [ - "184" + "1642" ], "OData-Version": [ "4.0" @@ -545,63 +542,66 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1110" + "Date": [ + "Tue, 06 Aug 2019 00:02:48 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1178" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3712.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EA74AEBFC\\\"\",\r\n \"name\": \"azsmnet670\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8542\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7509\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9001.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A016B7FD50C\\\"\",\r\n \"name\": \"azsmnet6213\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet225\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1023\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet670')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjcwJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexers('azsmnet6213')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjIxMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ee719752-7884-4d1d-b260-1cdccfb8933b" + "3975127a-89ab-426c-8416-4ded972575a8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ "*" ], "api-key": [ - "AC7B4A634BB9998B56F65D8740B95014" + "26559CAD1A5267CE688C3DE6E32A8E6E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:39 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "ee719752-7884-4d1d-b260-1cdccfb8933b" + "3975127a-89ab-426c-8416-4ded972575a8" ], "elapsed-time": [ - "44" + "64" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:49 GMT" + ], "Expires": [ "-1" ] @@ -610,42 +610,39 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet670')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjcwJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestUri": "/indexers('azsmnet6213')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjIxMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "52a7674c-5d90-4d1f-b5b1-62be9d630629" + "ee77d3b1-9adc-40ae-8b94-678d1c1bd165" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ "*" ], "api-key": [ - "AC7B4A634BB9998B56F65D8740B95014" + "26559CAD1A5267CE688C3DE6E32A8E6E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:39 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "52a7674c-5d90-4d1f-b5b1-62be9d630629" + "ee77d3b1-9adc-40ae-8b94-678d1c1bd165" ], "elapsed-time": [ "14" @@ -659,8 +656,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "160" + "Date": [ + "Tue, 06 Aug 2019 00:02:49 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -670,25 +667,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "160" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"\r\n }\r\n}", "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5157/providers/Microsoft.Search/searchServices/azs-3712?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzEyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet108/providers/Microsoft.Search/searchServices/azs-9001?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkwMDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c8781ae-08b4-42cd-aab8-4d2d17ee2a91" + "f3594a74-503c-463b-bf0b-2a0b1e91158b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -698,41 +698,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:26:42 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7c8781ae-08b4-42cd-aab8-4d2d17ee2a91" + "f3594a74-503c-463b-bf0b-2a0b1e91158b" ], "request-id": [ - "7c8781ae-08b4-42cd-aab8-4d2d17ee2a91" + "f3594a74-503c-463b-bf0b-2a0b1e91158b" ], "elapsed-time": [ - "786" + "856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14968" + "14992" ], "x-ms-correlation-request-id": [ - "1004bfe2-9d31-4c5f-a2d4-0e682084d9d3" + "75197674-df61-40c8-917f-6a6e0bc97667" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202642Z:1004bfe2-9d31-4c5f-a2d4-0e682084d9d3" + "NORTHEUROPE:20190806T000252Z:75197674-df61-40c8-917f-6a6e0bc97667" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:02:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -741,13 +741,13 @@ ], "Names": { "GenerateName": [ - "azsmnet5157", - "azsmnet7509", - "azsmnet8542", - "azsmnet670" + "azsmnet108", + "azsmnet1023", + "azsmnet225", + "azsmnet6213" ], "GenerateServiceName": [ - "azs-3712" + "azs-9001" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json index abc0d4fd1359..b68908c3975d 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33c6895e-ceb0-4f53-aee0-3442ec6a8164" + "6f8dbb15-2a2e-4bac-9353-ba1fa613f852" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:59 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1196" ], "x-ms-request-id": [ - "3fd70d46-fded-4b84-9ff5-e91432a815cc" + "96416007-f8a3-4182-b154-965eaa4f79e0" ], "x-ms-correlation-request-id": [ - "3fd70d46-fded-4b84-9ff5-e91432a815cc" + "96416007-f8a3-4182-b154-965eaa4f79e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202259Z:3fd70d46-fded-4b84-9ff5-e91432a815cc" + "NORTHEUROPE:20190805T235938Z:96416007-f8a3-4182-b154-965eaa4f79e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:38 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3793?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2888?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyODg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b859add-ad4e-431a-927b-4802fff57fa5" + "896062fe-475a-4d01-b7cd-5351247d0767" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:03 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1196" ], "x-ms-request-id": [ - "793a81a3-40d4-437b-badb-82c0837e497d" + "aa735d53-4461-48d3-9506-56300ad615df" ], "x-ms-correlation-request-id": [ - "793a81a3-40d4-437b-badb-82c0837e497d" + "aa735d53-4461-48d3-9506-56300ad615df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202304Z:793a81a3-40d4-437b-badb-82c0837e497d" + "NORTHEUROPE:20190805T235939Z:aa735d53-4461-48d3-9506-56300ad615df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:39 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793\",\r\n \"name\": \"azsmnet3793\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888\",\r\n \"name\": \"azsmnet2888\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793/providers/Microsoft.Search/searchServices/azs-1000?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888/providers/Microsoft.Search/searchServices/azs-4250?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyODg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dbeac342-9d94-4c8d-903f-d63e2431cadd" + "e359feba-c55d-473a-bba4-4c2f91cd2f70" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:06 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A23%3A06.6387568Z'\"" + "W/\"datetime'2019-08-05T23%3A59%3A41.7680315Z'\"" ], "x-ms-request-id": [ - "dbeac342-9d94-4c8d-903f-d63e2431cadd" + "e359feba-c55d-473a-bba4-4c2f91cd2f70" ], "request-id": [ - "dbeac342-9d94-4c8d-903f-d63e2431cadd" + "e359feba-c55d-473a-bba4-4c2f91cd2f70" ], "elapsed-time": [ - "937" + "1572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1195" ], "x-ms-correlation-request-id": [ - "7204d197-8353-45e1-849a-c0a43722aae9" + "43023205-cf22-4e2f-98ec-6e828571a623" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202307Z:7204d197-8353-45e1-849a-c0a43722aae9" + "NORTHEUROPE:20190805T235942Z:43023205-cf22-4e2f-98ec-6e828571a623" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:41 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793/providers/Microsoft.Search/searchServices/azs-1000\",\r\n \"name\": \"azs-1000\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888/providers/Microsoft.Search/searchServices/azs-4250\",\r\n \"name\": \"azs-4250\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793/providers/Microsoft.Search/searchServices/azs-1000/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDAwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888/providers/Microsoft.Search/searchServices/azs-4250/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyODg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjUwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4e6aa96-c571-432b-bc5b-bc4682e59a69" + "37306402-1165-40e6-bb6a-dc3a56f929b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:08 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4e6aa96-c571-432b-bc5b-bc4682e59a69" + "37306402-1165-40e6-bb6a-dc3a56f929b2" ], "request-id": [ - "d4e6aa96-c571-432b-bc5b-bc4682e59a69" + "37306402-1165-40e6-bb6a-dc3a56f929b2" ], "elapsed-time": [ - "267" + "415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1195" ], "x-ms-correlation-request-id": [ - "07b63996-c04f-425c-baa2-fd917e3730be" + "b9fc96ef-dd84-41e8-9674-bc2bfc734480" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202309Z:07b63996-c04f-425c-baa2-fd917e3730be" + "NORTHEUROPE:20190805T235944Z:b9fc96ef-dd84-41e8-9674-bc2bfc734480" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:44 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"DEEE3A6461A76F6285BA542096E403DD\",\r\n \"secondaryKey\": \"4EDCA590601FBD93013B296B8F2B16BF\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"7281B26676BE61D2F97033864DEAECA5\",\r\n \"secondaryKey\": \"7A04B06A774C78AA7F6851CD4E1BD167\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793/providers/Microsoft.Search/searchServices/azs-1000/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDAwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888/providers/Microsoft.Search/searchServices/azs-4250/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyODg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjUwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19223be5-95e5-4e3c-9857-3c30d483d378" + "da21dcda-b9b4-4ddd-a274-49f9487b112f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:09 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "19223be5-95e5-4e3c-9857-3c30d483d378" + "da21dcda-b9b4-4ddd-a274-49f9487b112f" ], "request-id": [ - "19223be5-95e5-4e3c-9857-3c30d483d378" + "da21dcda-b9b4-4ddd-a274-49f9487b112f" ], "elapsed-time": [ - "178" + "266" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14997" ], "x-ms-correlation-request-id": [ - "3dc382f1-fa70-4c65-b063-218f0e9669ae" + "579bcd4c-ea82-48b8-ab45-8b74beb96332" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202309Z:3dc382f1-fa70-4c65-b063-218f0e9669ae" + "NORTHEUROPE:20190805T235945Z:579bcd4c-ea82-48b8-ab45-8b74beb96332" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:44 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E77176EB2D22AA489298FA59891AD9EC\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2A038EF62B66BC94B06ECAF62FAEC263\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7914\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1487\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "bb89c03a-9ee0-4af7-b710-77c99b837ea8" + "0d6df5da-15f9-4c81-a0f5-81ea14ca57f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E2BC106BB\"" + "W/\"0x8D71A00FF3CE8CD\"" ], "Location": [ - "https://azs-1000.search-dogfood.windows-int.net/indexes('azsmnet7914')?api-version=2019-05-06" + "https://azs-4250.search-dogfood.windows-int.net/indexes('azsmnet1487')?api-version=2019-05-06" ], "request-id": [ - "bb89c03a-9ee0-4af7-b710-77c99b837ea8" + "0d6df5da-15f9-4c81-a0f5-81ea14ca57f2" ], "elapsed-time": [ - "1290" + "1409" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Mon, 05 Aug 2019 23:59:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1000.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E2BC106BB\\\"\",\r\n \"name\": \"azsmnet7914\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4250.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00FF3CE8CD\\\"\",\r\n \"name\": \"azsmnet1487\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7169\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9632\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "671a9204-9139-4511-bc28-c47afae9c121" + "c2900dac-5a7e-43ca-bb2f-33ab26ccadd0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E2BDE32BF\"" + "W/\"0x8D71A00FF55CDFD\"" ], "Location": [ - "https://azs-1000.search-dogfood.windows-int.net/datasources('azsmnet7169')?api-version=2019-05-06" + "https://azs-4250.search-dogfood.windows-int.net/datasources('azsmnet9632')?api-version=2019-05-06" ], "request-id": [ - "671a9204-9139-4511-bc28-c47afae9c121" + "c2900dac-5a7e-43ca-bb2f-33ab26ccadd0" ], "elapsed-time": [ - "109" + "31" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Mon, 05 Aug 2019 23:59:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1000.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E2BDE32BF\\\"\",\r\n \"name\": \"azsmnet7169\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4250.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00FF55CDFD\\\"\",\r\n \"name\": \"azsmnet9632\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8152')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODE1MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet9189')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE4OScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8152\",\r\n \"dataSourceName\": \"azsmnet7169\",\r\n \"targetIndexName\": \"azsmnet7914\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9189\",\r\n \"dataSourceName\": \"azsmnet9632\",\r\n \"targetIndexName\": \"azsmnet1487\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c7994383-3991-4d4a-8406-6d6a232588ce" + "1713bb27-07f1-4d2b-83e0-086255cd216c" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:15 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E2DEB723C\"" + "W/\"0x8D71A01003E6A21\"" ], "Location": [ - "https://azs-1000.search-dogfood.windows-int.net/indexers('azsmnet8152')?api-version=2019-05-06" + "https://azs-4250.search-dogfood.windows-int.net/indexers('azsmnet9189')?api-version=2019-05-06" ], "request-id": [ - "c7994383-3991-4d4a-8406-6d6a232588ce" + "1713bb27-07f1-4d2b-83e0-086255cd216c" ], "elapsed-time": [ - "2022" + "781" ], "OData-Version": [ "4.0" @@ -545,68 +542,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Mon, 05 Aug 2019 23:59:49 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1000.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E2DEB723C\\\"\",\r\n \"name\": \"azsmnet8152\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7169\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7914\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4250.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01003E6A21\\\"\",\r\n \"name\": \"azsmnet9189\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9632\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1487\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8152')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODE1MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet9189')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE4OScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8152\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7169\",\r\n \"targetIndexName\": \"azsmnet7914\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4E2DEB723C\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9189\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet9632\",\r\n \"targetIndexName\": \"azsmnet1487\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A01003E6A21\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "f2584e33-5d6c-4b9a-91cd-585ab180f15f" + "268519af-eeeb-46ce-83b1-76b6efad0cb4" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1284" + "1418" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E2E5CED2F\"" + "W/\"0x8D71A0100B3B65E\"" ], "request-id": [ - "f2584e33-5d6c-4b9a-91cd-585ab180f15f" + "268519af-eeeb-46ce-83b1-76b6efad0cb4" ], "elapsed-time": [ - "666" + "698" ], "OData-Version": [ "4.0" @@ -617,59 +614,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1124" + "Date": [ + "Mon, 05 Aug 2019 23:59:50 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1192" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1000.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E2E5CED2F\\\"\",\r\n \"name\": \"azsmnet8152\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7169\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7914\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4250.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0100B3B65E\\\"\",\r\n \"name\": \"azsmnet9189\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet9632\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1487\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet8152')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODE1MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet9189')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE4OScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92f1f0c1-9307-45be-ac5c-db9f617deb90" + "6954cc0f-2ab3-42aa-8f83-afd0781681ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ - "\"0x8D6CB4E2DEB723C\"" + "\"0x8D71A01003E6A21\"" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:16 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "92f1f0c1-9307-45be-ac5c-db9f617deb90" + "6954cc0f-2ab3-42aa-8f83-afd0781681ec" ], "elapsed-time": [ - "18" + "14" ], "OData-Version": [ "4.0" @@ -680,8 +677,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "160" + "Date": [ + "Mon, 05 Aug 2019 23:59:50 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -691,55 +688,58 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "160" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"\r\n }\r\n}", "StatusCode": 412 }, { - "RequestUri": "/indexers('azsmnet8152')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODE1MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet9189')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE4OScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ca8475e7-e262-4106-bc2f-7037ad6b0600" + "d6bc646b-5666-40ff-a85b-81734315d65b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ - "\"0x8D6CB4E2E5CED2F\"" + "\"0x8D71A0100B3B65E\"" ], "api-key": [ - "DEEE3A6461A76F6285BA542096E403DD" + "7281B26676BE61D2F97033864DEAECA5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:16 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "ca8475e7-e262-4106-bc2f-7037ad6b0600" + "d6bc646b-5666-40ff-a85b-81734315d65b" ], "elapsed-time": [ - "43" + "41" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:50 GMT" + ], "Expires": [ "-1" ] @@ -748,19 +748,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3793/providers/Microsoft.Search/searchServices/azs-1000?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2888/providers/Microsoft.Search/searchServices/azs-4250?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyODg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7ca6ba7-598b-4ec1-8a05-c5bd5c96f805" + "0cb1eb9a-9c8d-48a8-a3d8-ae12711d301b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -770,41 +770,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:18 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a7ca6ba7-598b-4ec1-8a05-c5bd5c96f805" + "0cb1eb9a-9c8d-48a8-a3d8-ae12711d301b" ], "request-id": [ - "a7ca6ba7-598b-4ec1-8a05-c5bd5c96f805" + "0cb1eb9a-9c8d-48a8-a3d8-ae12711d301b" ], "elapsed-time": [ - "802" + "927" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14971" + "14997" ], "x-ms-correlation-request-id": [ - "d39bcec3-f00c-4704-a697-3ee1407292a7" + "5d82c11c-7752-48b8-ba39-94874a2dd3bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202319Z:d39bcec3-f00c-4704-a697-3ee1407292a7" + "NORTHEUROPE:20190805T235953Z:5d82c11c-7752-48b8-ba39-94874a2dd3bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 05 Aug 2019 23:59:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -813,13 +813,13 @@ ], "Names": { "GenerateName": [ - "azsmnet3793", - "azsmnet7914", - "azsmnet7169", - "azsmnet8152" + "azsmnet2888", + "azsmnet1487", + "azsmnet9632", + "azsmnet9189" ], "GenerateServiceName": [ - "azs-1000" + "azs-4250" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json index 8f8b3bff9887..1de5cb873306 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29690b64-8eab-4cda-a7f8-7b1920da78f5" + "81a97763-e6d4-41f3-b8a0-bf6b5319cb9e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:25 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1179" ], "x-ms-request-id": [ - "1c0c291c-1741-4aee-a80a-71b24ff02c0e" + "c5ea2ad2-1552-484b-93b2-723e71401ae3" ], "x-ms-correlation-request-id": [ - "1c0c291c-1741-4aee-a80a-71b24ff02c0e" + "c5ea2ad2-1552-484b-93b2-723e71401ae3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202525Z:1c0c291c-1741-4aee-a80a-71b24ff02c0e" + "NORTHEUROPE:20190806T000351Z:c5ea2ad2-1552-484b-93b2-723e71401ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:51 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7406?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NDA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9484?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDg0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e01bc5d8-3116-451b-b53c-2167e6e168f0" + "e1b640f4-b7fe-4098-a999-48aaaddf5eb8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1189" ], "x-ms-request-id": [ - "0e60b418-ea72-4d64-9cb2-5ee3fdd29487" + "7cb2bbb2-13bd-45aa-bc26-df1ff74b9782" ], "x-ms-correlation-request-id": [ - "0e60b418-ea72-4d64-9cb2-5ee3fdd29487" + "7cb2bbb2-13bd-45aa-bc26-df1ff74b9782" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202526Z:0e60b418-ea72-4d64-9cb2-5ee3fdd29487" + "NORTHEUROPE:20190806T000352Z:7cb2bbb2-13bd-45aa-bc26-df1ff74b9782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:51 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406\",\r\n \"name\": \"azsmnet7406\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484\",\r\n \"name\": \"azsmnet9484\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406/providers/Microsoft.Search/searchServices/azs-1955?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTU1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484/providers/Microsoft.Search/searchServices/azs-917?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83f0a7c8-f54f-480b-a05d-ac76f134230f" + "cd52f7e4-6c05-4a5b-85de-e1d01a7eb6c9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:28 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A25%3A29.1335539Z'\"" + "W/\"datetime'2019-08-06T00%3A03%3A55.2903443Z'\"" ], "x-ms-request-id": [ - "83f0a7c8-f54f-480b-a05d-ac76f134230f" + "cd52f7e4-6c05-4a5b-85de-e1d01a7eb6c9" ], "request-id": [ - "83f0a7c8-f54f-480b-a05d-ac76f134230f" + "cd52f7e4-6c05-4a5b-85de-e1d01a7eb6c9" ], "elapsed-time": [ - "1512" + "1430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1191" ], "x-ms-correlation-request-id": [ - "fe6ff69e-3109-428d-b376-7d484095624c" + "148ff573-589f-4e41-bb40-13f22a5e47a0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202529Z:fe6ff69e-3109-428d-b376-7d484095624c" + "NORTHEUROPE:20190806T000355Z:148ff573-589f-4e41-bb40-13f22a5e47a0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:55 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406/providers/Microsoft.Search/searchServices/azs-1955\",\r\n \"name\": \"azs-1955\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484/providers/Microsoft.Search/searchServices/azs-917\",\r\n \"name\": \"azs-917\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406/providers/Microsoft.Search/searchServices/azs-1955/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTU1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484/providers/Microsoft.Search/searchServices/azs-917/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTcvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64c35fef-f283-4ab3-a604-b570be8b0638" + "301c18be-26d3-401b-8da6-85053aa9596d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:32 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "64c35fef-f283-4ab3-a604-b570be8b0638" + "301c18be-26d3-401b-8da6-85053aa9596d" ], "request-id": [ - "64c35fef-f283-4ab3-a604-b570be8b0638" + "301c18be-26d3-401b-8da6-85053aa9596d" ], "elapsed-time": [ - "145" + "193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1191" ], "x-ms-correlation-request-id": [ - "ac345f14-a6b8-4fbf-b541-92e413989551" + "b9b9b238-7df1-4ee6-ac4f-39a1fb390164" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202532Z:ac345f14-a6b8-4fbf-b541-92e413989551" + "NORTHEUROPE:20190806T000357Z:b9b9b238-7df1-4ee6-ac4f-39a1fb390164" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:57 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"FADA06E695850F7DFE5DF2E0D595078C\",\r\n \"secondaryKey\": \"36AA13970280955CA94E9037E526A017\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"8121446327635D89505154898350FBB0\",\r\n \"secondaryKey\": \"569345F1C9E2FFA6C5C0EE060FF44A1F\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406/providers/Microsoft.Search/searchServices/azs-1955/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTU1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484/providers/Microsoft.Search/searchServices/azs-917/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTcvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7eae813-7187-4f53-9b98-f81eaf90d270" + "459f6d5f-746e-4669-ade0-d627f1fbe247" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:32 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7eae813-7187-4f53-9b98-f81eaf90d270" + "459f6d5f-746e-4669-ade0-d627f1fbe247" ], "request-id": [ - "a7eae813-7187-4f53-9b98-f81eaf90d270" + "459f6d5f-746e-4669-ade0-d627f1fbe247" ], "elapsed-time": [ - "91" + "212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-correlation-request-id": [ - "9deb2982-b942-4e70-b0da-e47135f26c41" + "8933266e-dbbe-4029-9784-d9ecd9df84d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202532Z:9deb2982-b942-4e70-b0da-e47135f26c41" + "NORTHEUROPE:20190806T000358Z:8933266e-dbbe-4029-9784-d9ecd9df84d8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:57 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7470A30078537CA5F5B41F992C0C63E9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"59AA2D2A88ACF60E10F9D29885F1CA2E\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1129\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet790\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "2575697f-a055-4afd-a6e3-f761b71eb6c3" + "907e8bfe-630b-4e10-bcd6-02eca6c98e4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2350" + "2349" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E80F3B5D0\"" + "W/\"0x8D71A01952D071C\"" ], "Location": [ - "https://azs-1955.search-dogfood.windows-int.net/indexes('azsmnet1129')?api-version=2019-05-06" + "https://azs-917.search-dogfood.windows-int.net/indexes('azsmnet790')?api-version=2019-05-06" ], "request-id": [ - "2575697f-a055-4afd-a6e3-f761b71eb6c3" + "907e8bfe-630b-4e10-bcd6-02eca6c98e4d" ], "elapsed-time": [ - "1489" + "714" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:03:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2534" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1955.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E80F3B5D0\\\"\",\r\n \"name\": \"azsmnet1129\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-917.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01952D071C\\\"\",\r\n \"name\": \"azsmnet790\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3391\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7479\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "29f870b9-7349-4f57-8956-2a4e22d569bf" + "f5405ed6-3e16-4edb-83e8-d27d0400dd6a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,20 +443,17 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E81093ED6\"" + "W/\"0x8D71A019545C535\"" ], "Location": [ - "https://azs-1955.search-dogfood.windows-int.net/datasources('azsmnet3391')?api-version=2019-05-06" + "https://azs-917.search-dogfood.windows-int.net/datasources('azsmnet7479')?api-version=2019-05-06" ], "request-id": [ - "29f870b9-7349-4f57-8956-2a4e22d569bf" + "f5405ed6-3e16-4edb-83e8-d27d0400dd6a" ], "elapsed-time": [ "31" @@ -470,56 +467,56 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:03:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "363" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1955.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E81093ED6\\\"\",\r\n \"name\": \"azsmnet3391\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-917.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A019545C535\\\"\",\r\n \"name\": \"azsmnet7479\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet3438')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzQzOCcpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet2621')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjYyMScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b03c2891-06c3-46c7-91f3-8bf0ae1bb01b" + "3fd4e8d2-13aa-4220-881c-b223378240a1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:37 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "b03c2891-06c3-46c7-91f3-8bf0ae1bb01b" + "3fd4e8d2-13aa-4220-881c-b223378240a1" ], "elapsed-time": [ - "45" + "10" ], "OData-Version": [ "4.0" @@ -530,8 +527,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "92" + "Date": [ + "Tue, 06 Aug 2019 00:03:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -541,52 +538,55 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "91" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet3438' was not found in service 'azs-1955'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet2621' was not found in service 'azs-917'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/indexers('azsmnet3438')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzQzOCcpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet2621')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjYyMScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cb7c4079-aa11-4f17-8e86-7faa61970e6b" + "19c641d0-0e2f-4680-b00c-9ec5c0236fae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:37 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "cb7c4079-aa11-4f17-8e86-7faa61970e6b" + "19c641d0-0e2f-4680-b00c-9ec5c0236fae" ], "elapsed-time": [ - "47" + "44" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:00 GMT" + ], "Expires": [ "-1" ] @@ -595,42 +595,39 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet3438')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzQzOCcpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet2621')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjYyMScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "056dc815-68a9-4840-86f6-d15932d776b0" + "f62a8db3-f3b4-4739-8a91-0b35bafadbf1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:37 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "056dc815-68a9-4840-86f6-d15932d776b0" + "f62a8db3-f3b4-4739-8a91-0b35bafadbf1" ], "elapsed-time": [ - "11" + "10" ], "OData-Version": [ "4.0" @@ -641,8 +638,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "92" + "Date": [ + "Tue, 06 Aug 2019 00:04:00 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -652,60 +649,60 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "91" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet3438' was not found in service 'azs-1955'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet2621' was not found in service 'azs-917'.\"\r\n }\r\n}", "StatusCode": 404 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3438\",\r\n \"dataSourceName\": \"azsmnet3391\",\r\n \"targetIndexName\": \"azsmnet1129\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2621\",\r\n \"dataSourceName\": \"azsmnet7479\",\r\n \"targetIndexName\": \"azsmnet790\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "06539acd-a06e-46b8-92d8-bd8c3c39dbb1" + "ea340423-154d-4d63-8fa3-1508e8af37f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FADA06E695850F7DFE5DF2E0D595078C" + "8121446327635D89505154898350FBB0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1260" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E824D09CB\"" + "W/\"0x8D71A0195D4E135\"" ], "Location": [ - "https://azs-1955.search-dogfood.windows-int.net/indexers('azsmnet3438')?api-version=2019-05-06" + "https://azs-917.search-dogfood.windows-int.net/indexers('azsmnet2621')?api-version=2019-05-06" ], "request-id": [ - "06539acd-a06e-46b8-92d8-bd8c3c39dbb1" + "ea340423-154d-4d63-8fa3-1508e8af37f2" ], "elapsed-time": [ - "228" + "178" ], "OData-Version": [ "4.0" @@ -716,33 +713,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:04:00 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1177" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1955.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E824D09CB\\\"\",\r\n \"name\": \"azsmnet3438\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3391\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1129\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-917.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0195D4E135\\\"\",\r\n \"name\": \"azsmnet2621\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7479\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet790\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7406/providers/Microsoft.Search/searchServices/azs-1955?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTU1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9484/providers/Microsoft.Search/searchServices/azs-917?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9320958d-061e-4eb4-9547-44155c9f9858" + "855823cf-696c-4876-aa00-20bc68752268" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -752,41 +752,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:25:38 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9320958d-061e-4eb4-9547-44155c9f9858" + "855823cf-696c-4876-aa00-20bc68752268" ], "request-id": [ - "9320958d-061e-4eb4-9547-44155c9f9858" + "855823cf-696c-4876-aa00-20bc68752268" ], "elapsed-time": [ - "718" + "963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14965" + "14989" ], "x-ms-correlation-request-id": [ - "88cc0909-5150-4597-aa62-5a040506e2a7" + "18a39691-c4eb-4c41-bb1e-ea87357847fa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202539Z:88cc0909-5150-4597-aa62-5a040506e2a7" + "NORTHEUROPE:20190806T000403Z:18a39691-c4eb-4c41-bb1e-ea87357847fa" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:04:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -795,13 +795,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7406", - "azsmnet1129", - "azsmnet3391", - "azsmnet3438" + "azsmnet9484", + "azsmnet790", + "azsmnet7479", + "azsmnet2621" ], "GenerateServiceName": [ - "azs-1955" + "azs-917" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json index 11ce8dd5642c..dabc2485f762 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e761212d-eb31-4686-93e3-4f95a4184c12" + "a225911b-00f8-48a0-8edd-7e90a26a080f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:37 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1175" ], "x-ms-request-id": [ - "b0b50dff-1402-4a67-a2a9-1c92da13492a" + "8d4905ca-03bc-4a23-b035-ef039fc83c99" ], "x-ms-correlation-request-id": [ - "b0b50dff-1402-4a67-a2a9-1c92da13492a" + "8d4905ca-03bc-4a23-b035-ef039fc83c99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202937Z:b0b50dff-1402-4a67-a2a9-1c92da13492a" + "NORTHEUROPE:20190806T000439Z:8d4905ca-03bc-4a23-b035-ef039fc83c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:38 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6069?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8880?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODgwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c9f9f2c-c588-42aa-8a3a-7820e0c98617" + "44e1d11f-23c4-486b-966e-267ab4cbf730" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:38 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1186" ], "x-ms-request-id": [ - "c554dd05-cce3-4f18-80dd-96bcddbd3b73" + "7d26a43b-fe65-4439-8eaa-37b3d665722b" ], "x-ms-correlation-request-id": [ - "c554dd05-cce3-4f18-80dd-96bcddbd3b73" + "7d26a43b-fe65-4439-8eaa-37b3d665722b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202938Z:c554dd05-cce3-4f18-80dd-96bcddbd3b73" + "NORTHEUROPE:20190806T000440Z:7d26a43b-fe65-4439-8eaa-37b3d665722b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:39 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069\",\r\n \"name\": \"azsmnet6069\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880\",\r\n \"name\": \"azsmnet8880\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069/providers/Microsoft.Search/searchServices/azs-3168?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMTY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880/providers/Microsoft.Search/searchServices/azs-1889?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xODg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e04006d6-5b1a-4048-bfd1-bf3786b9828c" + "5f350069-d05a-47f1-93eb-37bda18d8702" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A29%3A40.9148415Z'\"" + "W/\"datetime'2019-08-06T00%3A04%3A43.3760656Z'\"" ], "x-ms-request-id": [ - "e04006d6-5b1a-4048-bfd1-bf3786b9828c" + "5f350069-d05a-47f1-93eb-37bda18d8702" ], "request-id": [ - "e04006d6-5b1a-4048-bfd1-bf3786b9828c" + "5f350069-d05a-47f1-93eb-37bda18d8702" ], "elapsed-time": [ - "937" + "1935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1188" ], "x-ms-correlation-request-id": [ - "93772575-c133-470b-b6f9-8233e3389545" + "d9e0a902-d5ee-4f37-be1a-4f22814dbdea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202941Z:93772575-c133-470b-b6f9-8233e3389545" + "NORTHEUROPE:20190806T000443Z:d9e0a902-d5ee-4f37-be1a-4f22814dbdea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:43 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069/providers/Microsoft.Search/searchServices/azs-3168\",\r\n \"name\": \"azs-3168\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880/providers/Microsoft.Search/searchServices/azs-1889\",\r\n \"name\": \"azs-1889\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069/providers/Microsoft.Search/searchServices/azs-3168/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMTY4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880/providers/Microsoft.Search/searchServices/azs-1889/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xODg5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "269ce677-e08f-4db8-bccc-1ef97316f097" + "67727d4f-cc2d-4981-92e3-c59aaae2aa04" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:42 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "269ce677-e08f-4db8-bccc-1ef97316f097" + "67727d4f-cc2d-4981-92e3-c59aaae2aa04" ], "request-id": [ - "269ce677-e08f-4db8-bccc-1ef97316f097" + "67727d4f-cc2d-4981-92e3-c59aaae2aa04" ], "elapsed-time": [ - "128" + "310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1188" ], "x-ms-correlation-request-id": [ - "535be7cc-3d01-42ff-b50f-44b38fe7888b" + "62a29747-8bd1-4f36-b9b1-f29504ea1228" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202943Z:535be7cc-3d01-42ff-b50f-44b38fe7888b" + "NORTHEUROPE:20190806T000445Z:62a29747-8bd1-4f36-b9b1-f29504ea1228" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:45 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"FC039384535923A6A9744F0964878F47\",\r\n \"secondaryKey\": \"CD60F52002C404058134A4EF2E0AD242\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"406BBDFDEDCD6FA9FDF0D36CE46C0919\",\r\n \"secondaryKey\": \"1D787CDBEC2AD6DE70D7331359D21494\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069/providers/Microsoft.Search/searchServices/azs-3168/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMTY4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880/providers/Microsoft.Search/searchServices/azs-1889/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xODg5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c68470b9-b45d-469f-8f3b-9e427f073f9c" + "149571c5-2400-4748-bdd1-bd6a1e435965" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:43 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c68470b9-b45d-469f-8f3b-9e427f073f9c" + "149571c5-2400-4748-bdd1-bd6a1e435965" ], "request-id": [ - "c68470b9-b45d-469f-8f3b-9e427f073f9c" + "149571c5-2400-4748-bdd1-bd6a1e435965" ], "elapsed-time": [ - "94" + "506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14991" ], "x-ms-correlation-request-id": [ - "b620e5bf-c74a-44cc-b610-0e343d68a32c" + "f1977ba0-aa09-42ff-b141-8cd91f8214ff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202943Z:b620e5bf-c74a-44cc-b610-0e343d68a32c" + "NORTHEUROPE:20190806T000446Z:f1977ba0-aa09-42ff-b141-8cd91f8214ff" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:04:46 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E9D0CD2EBCE5B03A7796F48C6D8C43BD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4AF728C844BA58D4889B8F7C0C87F13B\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7338\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6486\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "a82ac894-34a8-4361-9ba5-68a3bcb8db84" + "da99d180-00d6-44c1-b522-e0ac6a8cafcd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FC039384535923A6A9744F0964878F47" + "406BBDFDEDCD6FA9FDF0D36CE46C0919" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F1765D957\"" + "W/\"0x8D71A01B26223F9\"" ], "Location": [ - "https://azs-3168.search-dogfood.windows-int.net/indexes('azsmnet7338')?api-version=2019-05-06" + "https://azs-1889.search-dogfood.windows-int.net/indexes('azsmnet6486')?api-version=2019-05-06" ], "request-id": [ - "a82ac894-34a8-4361-9ba5-68a3bcb8db84" + "da99d180-00d6-44c1-b522-e0ac6a8cafcd" ], "elapsed-time": [ - "1363" + "716" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:04:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3168.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F1765D957\\\"\",\r\n \"name\": \"azsmnet7338\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1889.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01B26223F9\\\"\",\r\n \"name\": \"azsmnet6486\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3660\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8129\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "d442ad0a-98c1-4571-9ad1-ea66e069b57e" + "ad31b4dc-77d5-4b78-b01d-2ff4ecf5eb90" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FC039384535923A6A9744F0964878F47" + "406BBDFDEDCD6FA9FDF0D36CE46C0919" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:47 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F177DACE1\"" + "W/\"0x8D71A01B279A938\"" ], "Location": [ - "https://azs-3168.search-dogfood.windows-int.net/datasources('azsmnet3660')?api-version=2019-05-06" + "https://azs-1889.search-dogfood.windows-int.net/datasources('azsmnet8129')?api-version=2019-05-06" ], "request-id": [ - "d442ad0a-98c1-4571-9ad1-ea66e069b57e" + "ad31b4dc-77d5-4b78-b01d-2ff4ecf5eb90" ], "elapsed-time": [ - "34" + "30" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:04:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3168.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F177DACE1\\\"\",\r\n \"name\": \"azsmnet3660\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1889.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01B279A938\\\"\",\r\n \"name\": \"azsmnet8129\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { @@ -490,36 +490,33 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4ef9ca65-d8d5-4e1f-9609-caf390776582" + "007818ee-5b0d-4b35-b293-61904ce87959" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "FC039384535923A6A9744F0964878F47" + "406BBDFDEDCD6FA9FDF0D36CE46C0919" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:49 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "4ef9ca65-d8d5-4e1f-9609-caf390776582" + "007818ee-5b0d-4b35-b293-61904ce87959" ], "elapsed-time": [ - "45" + "15" ], "OData-Version": [ "4.0" @@ -530,8 +527,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "95" + "Date": [ + "Tue, 06 Aug 2019 00:04:48 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -541,25 +538,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "95" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'invalidindexer' was not found in service 'azs-3168'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'invalidindexer' was not found in service 'azs-1889'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6069/providers/Microsoft.Search/searchServices/azs-3168?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMTY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8880/providers/Microsoft.Search/searchServices/azs-1889?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xODg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57d2fd25-6d7e-4b6a-bc16-28d9811bfaee" + "3867be17-5271-4450-afea-d09f23d90def" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -569,41 +569,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:29:52 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "57d2fd25-6d7e-4b6a-bc16-28d9811bfaee" + "3867be17-5271-4450-afea-d09f23d90def" ], "request-id": [ - "57d2fd25-6d7e-4b6a-bc16-28d9811bfaee" + "3867be17-5271-4450-afea-d09f23d90def" ], "elapsed-time": [ - "946" + "1033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14962" + "14988" ], "x-ms-correlation-request-id": [ - "3811a836-37c1-4199-955f-43e6e272351c" + "9a4fcc5e-2840-4035-9314-c6522f3a29bb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202952Z:3811a836-37c1-4199-955f-43e6e272351c" + "NORTHEUROPE:20190806T000452Z:9a4fcc5e-2840-4035-9314-c6522f3a29bb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:04:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -612,12 +612,12 @@ ], "Names": { "GenerateName": [ - "azsmnet6069", - "azsmnet7338", - "azsmnet3660" + "azsmnet8880", + "azsmnet6486", + "azsmnet8129" ], "GenerateServiceName": [ - "azs-3168" + "azs-1889" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json index ae8682ffa04a..07a1fc2a79d8 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7160989-557a-4f80-86c8-4bbdefae46d8" + "657b242c-bbc0-4bc0-9f62-131026330df1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:45 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1188" ], "x-ms-request-id": [ - "8371aa9c-cd88-492c-97cb-44f851bf3a36" + "44a80806-7359-4aef-a51f-7e79ca6d4975" ], "x-ms-correlation-request-id": [ - "8371aa9c-cd88-492c-97cb-44f851bf3a36" + "44a80806-7359-4aef-a51f-7e79ca6d4975" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202346Z:8371aa9c-cd88-492c-97cb-44f851bf3a36" + "NORTHEUROPE:20190805T235900Z:44a80806-7359-4aef-a51f-7e79ca6d4975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:00 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9173?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTczP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5173?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTczP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "35bf26e9-39ed-47fb-989f-dc666ccd6766" + "3c7c9a16-e0be-4baf-9fb3-094c1cbc85f0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:47 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1198" ], "x-ms-request-id": [ - "1873a684-77c9-4930-b44b-3a483ca0e8b1" + "f20aab68-2596-4c35-a957-855475e3d021" ], "x-ms-correlation-request-id": [ - "1873a684-77c9-4930-b44b-3a483ca0e8b1" + "f20aab68-2596-4c35-a957-855475e3d021" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202347Z:1873a684-77c9-4930-b44b-3a483ca0e8b1" + "NORTHEUROPE:20190805T235901Z:f20aab68-2596-4c35-a957-855475e3d021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:01 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173\",\r\n \"name\": \"azsmnet9173\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173\",\r\n \"name\": \"azsmnet5173\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173/providers/Microsoft.Search/searchServices/azs-660?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NjA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173/providers/Microsoft.Search/searchServices/azs-2757?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "699f9e40-2ec4-4fd4-80fa-d820ca193632" + "da1799f5-2ac9-4db8-ba02-b5777214d819" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:50 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A23%3A50.7419989Z'\"" + "W/\"datetime'2019-08-05T23%3A59%3A04.5593894Z'\"" ], "x-ms-request-id": [ - "699f9e40-2ec4-4fd4-80fa-d820ca193632" + "da1799f5-2ac9-4db8-ba02-b5777214d819" ], "request-id": [ - "699f9e40-2ec4-4fd4-80fa-d820ca193632" + "da1799f5-2ac9-4db8-ba02-b5777214d819" ], "elapsed-time": [ - "1202" + "1633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1197" ], "x-ms-correlation-request-id": [ - "8ff37533-5cde-4e0d-b833-36ea4ddecc88" + "3a40b907-d6b5-44ca-b14f-ae35b92a1c88" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202351Z:8ff37533-5cde-4e0d-b833-36ea4ddecc88" + "NORTHEUROPE:20190805T235905Z:3a40b907-d6b5-44ca-b14f-ae35b92a1c88" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:04 GMT" + ], "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173/providers/Microsoft.Search/searchServices/azs-660\",\r\n \"name\": \"azs-660\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173/providers/Microsoft.Search/searchServices/azs-2757\",\r\n \"name\": \"azs-2757\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173/providers/Microsoft.Search/searchServices/azs-660/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NjAvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173/providers/Microsoft.Search/searchServices/azs-2757/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzU3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1d016df-9bcd-4424-8762-3c797facf133" + "6c30a05c-b55e-473b-a9ce-2109c6268392" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:52 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1d016df-9bcd-4424-8762-3c797facf133" + "6c30a05c-b55e-473b-a9ce-2109c6268392" ], "request-id": [ - "f1d016df-9bcd-4424-8762-3c797facf133" + "6c30a05c-b55e-473b-a9ce-2109c6268392" ], "elapsed-time": [ - "161" + "120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1197" ], "x-ms-correlation-request-id": [ - "94e63440-ef2b-4625-9738-1078670d5572" + "0b058006-ddba-4aad-b829-cab4228f1631" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202353Z:94e63440-ef2b-4625-9738-1078670d5572" + "NORTHEUROPE:20190805T235907Z:0b058006-ddba-4aad-b829-cab4228f1631" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:07 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"09BDC890DCBB3C35D2F0B59245902989\",\r\n \"secondaryKey\": \"ECA5EDA51D00371D434EE32516456ADA\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"8F86D2B6B2EF5B969AFC849F5D87E981\",\r\n \"secondaryKey\": \"9A2DBFEF935B7B5AD15C40DBE191914A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173/providers/Microsoft.Search/searchServices/azs-660/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NjAvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173/providers/Microsoft.Search/searchServices/azs-2757/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzU3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59bfbb00-79cd-4004-827f-e4c3cf3c4a3b" + "b53e22c9-6a36-4d92-9b87-9e34b7de83e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:52 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "59bfbb00-79cd-4004-827f-e4c3cf3c4a3b" + "b53e22c9-6a36-4d92-9b87-9e34b7de83e9" ], "request-id": [ - "59bfbb00-79cd-4004-827f-e4c3cf3c4a3b" + "b53e22c9-6a36-4d92-9b87-9e34b7de83e9" ], "elapsed-time": [ - "98" + "94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14998" ], "x-ms-correlation-request-id": [ - "9ce493cb-3e35-49d7-8dfc-5633129f3dcc" + "f4cf5bca-5120-48fe-8439-45319fc4cc75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202353Z:9ce493cb-3e35-49d7-8dfc-5633129f3dcc" + "NORTHEUROPE:20190805T235908Z:f4cf5bca-5120-48fe-8439-45319fc4cc75" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:08 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"DDBEBD4DD6730E6BE99971ED5B366FCE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BF0CA6204B06CC56E8274456459CC152\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3190\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7576\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "b43c35db-a719-4146-9f15-2959eac32727" + "5539497a-a61e-463a-8e5d-90fec8ba8d28" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09BDC890DCBB3C35D2F0B59245902989" + "8F86D2B6B2EF5B969AFC849F5D87E981" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E45E74CA1\"" + "W/\"0x8D71A00E88E865A\"" ], "Location": [ - "https://azs-660.search-dogfood.windows-int.net/indexes('azsmnet3190')?api-version=2019-05-06" + "https://azs-2757.search-dogfood.windows-int.net/indexes('azsmnet7576')?api-version=2019-05-06" ], "request-id": [ - "b43c35db-a719-4146-9f15-2959eac32727" + "5539497a-a61e-463a-8e5d-90fec8ba8d28" ], "elapsed-time": [ - "760" + "745" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2535" + "Date": [ + "Mon, 05 Aug 2019 23:59:10 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-660.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E45E74CA1\\\"\",\r\n \"name\": \"azsmnet3190\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2757.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00E88E865A\\\"\",\r\n \"name\": \"azsmnet7576\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3879\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4179\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "780b1a80-d30e-4feb-aedc-ed563d9c379a" + "0875cc10-03ab-4b4e-891c-504f042d80b2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09BDC890DCBB3C35D2F0B59245902989" + "8F86D2B6B2EF5B969AFC849F5D87E981" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:56 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E45FCD5AC\"" + "W/\"0x8D71A00E8AAEED0\"" ], "Location": [ - "https://azs-660.search-dogfood.windows-int.net/datasources('azsmnet3879')?api-version=2019-05-06" + "https://azs-2757.search-dogfood.windows-int.net/datasources('azsmnet4179')?api-version=2019-05-06" ], "request-id": [ - "780b1a80-d30e-4feb-aedc-ed563d9c379a" + "0875cc10-03ab-4b4e-891c-504f042d80b2" ], "elapsed-time": [ - "27" + "35" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "363" + "Date": [ + "Mon, 05 Aug 2019 23:59:10 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-660.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E45FCD5AC\\\"\",\r\n \"name\": \"azsmnet3879\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2757.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00E8AAEED0\\\"\",\r\n \"name\": \"azsmnet4179\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/indexers?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2076\",\r\n \"dataSourceName\": \"azsmnet3879\",\r\n \"targetIndexName\": \"azsmnet3190\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6003\",\r\n \"dataSourceName\": \"azsmnet4179\",\r\n \"targetIndexName\": \"azsmnet7576\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c6d6adbe-637c-464e-9e44-5ca33854d28e" + "75e0f4db-c586-40c3-aa79-fb19b500bc61" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09BDC890DCBB3C35D2F0B59245902989" + "8F86D2B6B2EF5B969AFC849F5D87E981" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E47C35E13\"" + "W/\"0x8D71A00EAA2F21E\"" ], "Location": [ - "https://azs-660.search-dogfood.windows-int.net/indexers('azsmnet2076')?api-version=2019-05-06" + "https://azs-2757.search-dogfood.windows-int.net/indexers('azsmnet6003')?api-version=2019-05-06" ], "request-id": [ - "c6d6adbe-637c-464e-9e44-5ca33854d28e" + "75e0f4db-c586-40c3-aa79-fb19b500bc61" ], "elapsed-time": [ - "298" + "2139" ], "OData-Version": [ "4.0" @@ -542,59 +539,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1110" + "Date": [ + "Mon, 05 Aug 2019 23:59:13 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-660.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E47C35E13\\\"\",\r\n \"name\": \"azsmnet2076\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3879\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3190\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2757.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00EAA2F21E\\\"\",\r\n \"name\": \"azsmnet6003\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4179\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7576\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet2076')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjA3NicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet6003')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjAwMycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4daf57c-9fa1-400c-a7a2-ef9db784c7d7" + "a4c47c55-a62f-4b48-b8cb-18f0457b1271" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09BDC890DCBB3C35D2F0B59245902989" + "8F86D2B6B2EF5B969AFC849F5D87E981" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:23:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E47C35E13\"" + "W/\"0x8D71A00EAA2F21E\"" ], "request-id": [ - "a4daf57c-9fa1-400c-a7a2-ef9db784c7d7" + "a4c47c55-a62f-4b48-b8cb-18f0457b1271" ], "elapsed-time": [ - "30" + "24" ], "OData-Version": [ "4.0" @@ -605,33 +602,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1110" + "Date": [ + "Mon, 05 Aug 2019 23:59:13 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-660.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E47C35E13\\\"\",\r\n \"name\": \"azsmnet2076\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3879\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3190\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2757.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00EAA2F21E\\\"\",\r\n \"name\": \"azsmnet6003\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4179\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7576\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9173/providers/Microsoft.Search/searchServices/azs-660?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NjA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5173/providers/Microsoft.Search/searchServices/azs-2757?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce4b1399-1c13-49e9-854b-53b615c1aa2a" + "740b1ca3-bd75-46a4-80f6-b25d2ed2ced0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -641,41 +641,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:24:02 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ce4b1399-1c13-49e9-854b-53b615c1aa2a" + "740b1ca3-bd75-46a4-80f6-b25d2ed2ced0" ], "request-id": [ - "ce4b1399-1c13-49e9-854b-53b615c1aa2a" + "740b1ca3-bd75-46a4-80f6-b25d2ed2ced0" ], "elapsed-time": [ - "671" + "659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14969" + "14999" ], "x-ms-correlation-request-id": [ - "ecdd3af0-f50a-4f41-b21c-27c3aafb1182" + "ad629282-899c-468f-9875-d2db428499be" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202402Z:ecdd3af0-f50a-4f41-b21c-27c3aafb1182" + "NORTHEUROPE:20190805T235917Z:ad629282-899c-468f-9875-d2db428499be" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 05 Aug 2019 23:59:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -684,13 +684,13 @@ ], "Names": { "GenerateName": [ - "azsmnet9173", - "azsmnet3190", - "azsmnet3879", - "azsmnet2076" + "azsmnet5173", + "azsmnet7576", + "azsmnet4179", + "azsmnet6003" ], "GenerateServiceName": [ - "azs-660" + "azs-2757" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json index 8141e79f61e5..577b3b7bb778 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53a0862f-75e9-4270-9dd3-f1756fb95625" + "ec524111-196e-4d85-8f34-d3cfed7a5fd7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:08 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1194" ], "x-ms-request-id": [ - "412abdfc-2d2a-4422-8843-a55f0c15d8b5" + "4b808955-2a9c-4915-8d24-92e0e48edf71" ], "x-ms-correlation-request-id": [ - "412abdfc-2d2a-4422-8843-a55f0c15d8b5" + "4b808955-2a9c-4915-8d24-92e0e48edf71" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202708Z:412abdfc-2d2a-4422-8843-a55f0c15d8b5" + "NORTHEUROPE:20190806T000257Z:4b808955-2a9c-4915-8d24-92e0e48edf71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:57 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1222?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMjIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7817?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3ODE3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c175dc9-65c8-4c70-abfd-cfbe01ad6dec" + "48ef1a29-97d0-4f1b-a046-b120e73210ff" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:09 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1194" ], "x-ms-request-id": [ - "48483e7a-8e2f-4258-bf31-5c752519785d" + "77223614-dcc3-4c4e-a8c4-b94581aeb25b" ], "x-ms-correlation-request-id": [ - "48483e7a-8e2f-4258-bf31-5c752519785d" + "77223614-dcc3-4c4e-a8c4-b94581aeb25b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202709Z:48483e7a-8e2f-4258-bf31-5c752519785d" + "NORTHEUROPE:20190806T000258Z:77223614-dcc3-4c4e-a8c4-b94581aeb25b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:02:58 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222\",\r\n \"name\": \"azsmnet1222\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817\",\r\n \"name\": \"azsmnet7817\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222/providers/Microsoft.Search/searchServices/azs-1793?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817/providers/Microsoft.Search/searchServices/azs-3678?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46abeca7-0947-4cf0-801e-c4ca46ba48d3" + "3a8fa7ff-eec3-40d7-98fb-141e24e91439" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:13 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A27%3A12.8543635Z'\"" + "W/\"datetime'2019-08-06T00%3A03%3A00.892941Z'\"" ], "x-ms-request-id": [ - "46abeca7-0947-4cf0-801e-c4ca46ba48d3" + "3a8fa7ff-eec3-40d7-98fb-141e24e91439" ], "request-id": [ - "46abeca7-0947-4cf0-801e-c4ca46ba48d3" + "3a8fa7ff-eec3-40d7-98fb-141e24e91439" ], "elapsed-time": [ - "1723" + "908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1191" ], "x-ms-correlation-request-id": [ - "8e5431ba-3832-492a-a001-3713d0290217" + "b8bbf3b4-9184-461b-9a7c-238d63269a4b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202713Z:8e5431ba-3832-492a-a001-3713d0290217" + "NORTHEUROPE:20190806T000301Z:b8bbf3b4-9184-461b-9a7c-238d63269a4b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:01 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222/providers/Microsoft.Search/searchServices/azs-1793\",\r\n \"name\": \"azs-1793\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817/providers/Microsoft.Search/searchServices/azs-3678\",\r\n \"name\": \"azs-3678\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222/providers/Microsoft.Search/searchServices/azs-1793/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzkzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817/providers/Microsoft.Search/searchServices/azs-3678/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNjc4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25c4e7fe-740c-4cd5-a1b3-a326c3cddce6" + "996631cb-8330-431b-b32e-fab4c19ccf67" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:16 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "25c4e7fe-740c-4cd5-a1b3-a326c3cddce6" + "996631cb-8330-431b-b32e-fab4c19ccf67" ], "request-id": [ - "25c4e7fe-740c-4cd5-a1b3-a326c3cddce6" + "996631cb-8330-431b-b32e-fab4c19ccf67" ], "elapsed-time": [ - "482" + "181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1191" ], "x-ms-correlation-request-id": [ - "137f0dc7-dca0-4f05-8943-eac50f551115" + "57173c0b-da20-4f1b-8d3a-8a10f7369aeb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202716Z:137f0dc7-dca0-4f05-8943-eac50f551115" + "NORTHEUROPE:20190806T000302Z:57173c0b-da20-4f1b-8d3a-8a10f7369aeb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:02 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"09E04FF72F962130AB926AA8B6F5DCC3\",\r\n \"secondaryKey\": \"EC68DFFF371C06CE6D3E0C27B46F4648\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"B7FA875585A5A2A2954132AE58B8FA4C\",\r\n \"secondaryKey\": \"9F33FCCDFE7F9DEDEE4C50BE7CE6B04B\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222/providers/Microsoft.Search/searchServices/azs-1793/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzkzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817/providers/Microsoft.Search/searchServices/azs-3678/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNjc4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35a0fc9b-0c45-4859-8e73-a07d70d4fc1f" + "6349227e-c78b-487c-be92-2c45616dc067" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:16 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "35a0fc9b-0c45-4859-8e73-a07d70d4fc1f" + "6349227e-c78b-487c-be92-2c45616dc067" ], "request-id": [ - "35a0fc9b-0c45-4859-8e73-a07d70d4fc1f" + "6349227e-c78b-487c-be92-2c45616dc067" ], "elapsed-time": [ - "347" + "191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14993" ], "x-ms-correlation-request-id": [ - "6af243a4-4c12-408b-824d-1afa451db982" + "59385ec4-5450-4b8c-b707-540b24ec6c86" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202717Z:6af243a4-4c12-408b-824d-1afa451db982" + "NORTHEUROPE:20190806T000303Z:59385ec4-5450-4b8c-b707-540b24ec6c86" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:03:03 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F22BE277101AE3470219EE3F850D6FC9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"00FFEEAAC6C20C0164F3165D00FD2ABD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7522\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3864\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "63337771-a712-4eca-8990-91e60e0a482b" + "16745a1d-10e8-4373-a02a-fe9dfe0a791b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09E04FF72F962130AB926AA8B6F5DCC3" + "B7FA875585A5A2A2954132AE58B8FA4C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EBFDC9B13\"" + "W/\"0x8D71A0175117D1A\"" ], "Location": [ - "https://azs-1793.search-dogfood.windows-int.net/indexes('azsmnet7522')?api-version=2019-05-06" + "https://azs-3678.search-dogfood.windows-int.net/indexes('azsmnet3864')?api-version=2019-05-06" ], "request-id": [ - "63337771-a712-4eca-8990-91e60e0a482b" + "16745a1d-10e8-4373-a02a-fe9dfe0a791b" ], "elapsed-time": [ - "1920" + "1810" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:03:05 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1793.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EBFDC9B13\\\"\",\r\n \"name\": \"azsmnet7522\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3678.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0175117D1A\\\"\",\r\n \"name\": \"azsmnet3864\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3382\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1916\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "24edce3d-c32c-4414-9b79-fbc55bf41b33" + "f425e873-f153-4973-a5f2-1c1f54aca633" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09E04FF72F962130AB926AA8B6F5DCC3" + "B7FA875585A5A2A2954132AE58B8FA4C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:20 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4EBFF027D8\"" + "W/\"0x8D71A0175299EC9\"" ], "Location": [ - "https://azs-1793.search-dogfood.windows-int.net/datasources('azsmnet3382')?api-version=2019-05-06" + "https://azs-3678.search-dogfood.windows-int.net/datasources('azsmnet1916')?api-version=2019-05-06" ], "request-id": [ - "24edce3d-c32c-4414-9b79-fbc55bf41b33" + "f425e873-f153-4973-a5f2-1c1f54aca633" ], "elapsed-time": [ - "29" + "38" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:03:05 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1793.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4EBFF027D8\\\"\",\r\n \"name\": \"azsmnet3382\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3678.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0175299EC9\\\"\",\r\n \"name\": \"azsmnet1916\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { @@ -490,36 +490,33 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47f7e3d9-04ce-4c2f-b4b8-974843306d1d" + "d8f15478-ef5c-4aa9-bbcf-193e931753e9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "09E04FF72F962130AB926AA8B6F5DCC3" + "B7FA875585A5A2A2954132AE58B8FA4C" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:21 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "47f7e3d9-04ce-4c2f-b4b8-974843306d1d" + "d8f15478-ef5c-4aa9-bbcf-193e931753e9" ], "elapsed-time": [ - "24" + "39" ], "OData-Version": [ "4.0" @@ -530,8 +527,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "104" + "Date": [ + "Tue, 06 Aug 2019 00:03:09 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -541,25 +538,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "104" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'thisindexerdoesnotexist' was not found in service 'azs-1793'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'thisindexerdoesnotexist' was not found in service 'azs-3678'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1222/providers/Microsoft.Search/searchServices/azs-1793?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7817/providers/Microsoft.Search/searchServices/azs-3678?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55a83bd4-186f-468d-978f-d2d8b79c5840" + "2f786677-044c-4a5f-b56e-fd464b2808b9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -569,41 +569,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:25 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "55a83bd4-186f-468d-978f-d2d8b79c5840" + "2f786677-044c-4a5f-b56e-fd464b2808b9" ], "request-id": [ - "55a83bd4-186f-468d-978f-d2d8b79c5840" + "2f786677-044c-4a5f-b56e-fd464b2808b9" ], "elapsed-time": [ - "711" + "612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14947" + "14991" ], "x-ms-correlation-request-id": [ - "271f2f64-d5c4-40c0-a3a5-d527913d2991" + "f34589c2-3be7-411e-a797-424d7d33ba53" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202725Z:271f2f64-d5c4-40c0-a3a5-d527913d2991" + "NORTHEUROPE:20190806T000312Z:f34589c2-3be7-411e-a797-424d7d33ba53" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:03:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -612,12 +612,12 @@ ], "Names": { "GenerateName": [ - "azsmnet1222", - "azsmnet7522", - "azsmnet3382" + "azsmnet7817", + "azsmnet3864", + "azsmnet1916" ], "GenerateServiceName": [ - "azs-1793" + "azs-3678" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json index 61ea421e870a..aa72e7aef1c8 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb607250-61bb-475b-a878-fdef7ecb52a3" + "975ccfb5-2967-42e7-a823-b0adb3817255" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:33 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1199" ], "x-ms-request-id": [ - "dc295d55-a581-4bc7-8f37-2d37fcd75ed8" + "ccc366d4-e63b-4cc5-8f81-e8a98cf68cd6" ], "x-ms-correlation-request-id": [ - "dc295d55-a581-4bc7-8f37-2d37fcd75ed8" + "ccc366d4-e63b-4cc5-8f81-e8a98cf68cd6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203033Z:dc295d55-a581-4bc7-8f37-2d37fcd75ed8" + "NORTHEUROPE:20190805T235922Z:ccc366d4-e63b-4cc5-8f81-e8a98cf68cd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:21 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7866?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3ODY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet156?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8bb9243c-b31c-428e-a476-1e7897359807" + "e7459502-d3c2-4444-aa53-567b86a83bc3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:33 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1199" ], "x-ms-request-id": [ - "61bbb755-5637-4531-84ce-e3d9dc239042" + "8619c660-ae29-49b0-a78d-fe0298268dc6" ], "x-ms-correlation-request-id": [ - "61bbb755-5637-4531-84ce-e3d9dc239042" + "8619c660-ae29-49b0-a78d-fe0298268dc6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203033Z:61bbb755-5637-4531-84ce-e3d9dc239042" + "NORTHEUROPE:20190805T235923Z:8619c660-ae29-49b0-a78d-fe0298268dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:23 GMT" + ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866\",\r\n \"name\": \"azsmnet7866\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156\",\r\n \"name\": \"azsmnet156\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866/providers/Microsoft.Search/searchServices/azs-4669?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjY5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156/providers/Microsoft.Search/searchServices/azs-3688?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2ODg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "537e71c4-d932-4966-801d-60d4c7204e41" + "c5b8eb99-76c9-4934-a352-d78f228d0bdc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A30%3A36.7755986Z'\"" + "W/\"datetime'2019-08-05T23%3A59%3A25.8462058Z'\"" ], "x-ms-request-id": [ - "537e71c4-d932-4966-801d-60d4c7204e41" + "c5b8eb99-76c9-4934-a352-d78f228d0bdc" ], "request-id": [ - "537e71c4-d932-4966-801d-60d4c7204e41" + "c5b8eb99-76c9-4934-a352-d78f228d0bdc" ], "elapsed-time": [ - "1227" + "994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1199" ], "x-ms-correlation-request-id": [ - "cb9e88a3-1df5-4390-bfed-78807fd34126" + "dcd41fa7-2dbb-49f8-9bed-9d82f1ae8397" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203037Z:cb9e88a3-1df5-4390-bfed-78807fd34126" + "NORTHEUROPE:20190805T235926Z:dcd41fa7-2dbb-49f8-9bed-9d82f1ae8397" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:25 GMT" + ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866/providers/Microsoft.Search/searchServices/azs-4669\",\r\n \"name\": \"azs-4669\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156/providers/Microsoft.Search/searchServices/azs-3688\",\r\n \"name\": \"azs-3688\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866/providers/Microsoft.Search/searchServices/azs-4669/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjY5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156/providers/Microsoft.Search/searchServices/azs-3688/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2ODgvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "105813b4-e99f-4082-b619-451f1ef99fd8" + "c7335ff9-8d49-4e01-8714-f3d907e94f0f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:39 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "105813b4-e99f-4082-b619-451f1ef99fd8" + "c7335ff9-8d49-4e01-8714-f3d907e94f0f" ], "request-id": [ - "105813b4-e99f-4082-b619-451f1ef99fd8" + "c7335ff9-8d49-4e01-8714-f3d907e94f0f" ], "elapsed-time": [ - "147" + "123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1199" ], "x-ms-correlation-request-id": [ - "fb4175d4-54f4-4138-ab97-d262802932c1" + "07478f9f-b326-42dd-80c7-0508d6f14172" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203039Z:fb4175d4-54f4-4138-ab97-d262802932c1" + "NORTHEUROPE:20190805T235927Z:07478f9f-b326-42dd-80c7-0508d6f14172" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:26 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"C82F14F01387F3D29CFC385460EA7D3B\",\r\n \"secondaryKey\": \"517559B6F2792019FD9978D2967DE655\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"2D7196D756E518760693D67FC3B3DEDA\",\r\n \"secondaryKey\": \"CCA8B5B856C1AADAE98E7DE13FEFF9CD\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866/providers/Microsoft.Search/searchServices/azs-4669/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjY5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156/providers/Microsoft.Search/searchServices/azs-3688/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2ODgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88e8045d-2966-47ac-abe1-adf62c53dbdc" + "27bda22d-1c11-4ab9-a4a8-a25c3b5b9e80" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:39 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "88e8045d-2966-47ac-abe1-adf62c53dbdc" + "27bda22d-1c11-4ab9-a4a8-a25c3b5b9e80" ], "request-id": [ - "88e8045d-2966-47ac-abe1-adf62c53dbdc" + "27bda22d-1c11-4ab9-a4a8-a25c3b5b9e80" ], "elapsed-time": [ - "90" + "103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14999" ], "x-ms-correlation-request-id": [ - "e35fc408-2b60-40a3-b4b2-822d2e1910e1" + "bf3c4ebf-b5eb-444b-ab09-a89c4d36d2a5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203040Z:e35fc408-2b60-40a3-b4b2-822d2e1910e1" + "NORTHEUROPE:20190805T235928Z:bf3c4ebf-b5eb-444b-ab09-a89c4d36d2a5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Mon, 05 Aug 2019 23:59:27 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D3E46775F77D0330DB94C6EB4C3D2D11\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"1CBC397545FAAAC0D38CEC37F561123A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5073\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1737\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "4477985d-69a5-442f-b032-a7cc3660c7cd" + "132a0f97-f7ed-4319-820d-1df8a009d4ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "C82F14F01387F3D29CFC385460EA7D3B" + "2D7196D756E518760693D67FC3B3DEDA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F384A4E3E\"" + "W/\"0x8D71A00F4CD5598\"" ], "Location": [ - "https://azs-4669.search-dogfood.windows-int.net/indexes('azsmnet5073')?api-version=2019-05-06" + "https://azs-3688.search-dogfood.windows-int.net/indexes('azsmnet1737')?api-version=2019-05-06" ], "request-id": [ - "4477985d-69a5-442f-b032-a7cc3660c7cd" + "132a0f97-f7ed-4319-820d-1df8a009d4ed" ], "elapsed-time": [ - "800" + "1636" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Mon, 05 Aug 2019 23:59:30 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4669.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F384A4E3E\\\"\",\r\n \"name\": \"azsmnet5073\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3688.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00F4CD5598\\\"\",\r\n \"name\": \"azsmnet1737\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8515\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9155\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "e79ba0f8-5bf0-4eab-a98f-0145f51a784d" + "e81b4d6e-e4c8-4960-808e-93bd0aa6e91a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "C82F14F01387F3D29CFC385460EA7D3B" + "2D7196D756E518760693D67FC3B3DEDA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F3861855E\"" + "W/\"0x8D71A00F4F3AB7F\"" ], "Location": [ - "https://azs-4669.search-dogfood.windows-int.net/datasources('azsmnet8515')?api-version=2019-05-06" + "https://azs-3688.search-dogfood.windows-int.net/datasources('azsmnet9155')?api-version=2019-05-06" ], "request-id": [ - "e79ba0f8-5bf0-4eab-a98f-0145f51a784d" + "e81b4d6e-e4c8-4960-808e-93bd0aa6e91a" ], "elapsed-time": [ - "33" + "30" ], "OData-Version": [ "4.0" @@ -470,68 +467,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Mon, 05 Aug 2019 23:59:30 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4669.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F3861855E\\\"\",\r\n \"name\": \"azsmnet8515\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3688.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A00F4F3AB7F\\\"\",\r\n \"name\": \"azsmnet9155\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet5755')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTc1NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet2395')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjM5NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5755\",\r\n \"dataSourceName\": \"azsmnet8515\",\r\n \"targetIndexName\": \"azsmnet5073\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2395\",\r\n \"dataSourceName\": \"azsmnet9155\",\r\n \"targetIndexName\": \"azsmnet1737\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "612f1a59-1ae2-40be-aa50-aa24f8672bad" + "23ba1ebb-6097-4527-a294-3876176e9a36" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ "*" ], "api-key": [ - "C82F14F01387F3D29CFC385460EA7D3B" + "2D7196D756E518760693D67FC3B3DEDA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:44 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "612f1a59-1ae2-40be-aa50-aa24f8672bad" + "23ba1ebb-6097-4527-a294-3876176e9a36" ], "elapsed-time": [ - "48" + "29" ], "OData-Version": [ "4.0" @@ -542,8 +539,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "160" + "Date": [ + "Mon, 05 Aug 2019 23:59:31 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -553,25 +550,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "160" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"\r\n }\r\n}", "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7866/providers/Microsoft.Search/searchServices/azs-4669?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjY5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet156/providers/Microsoft.Search/searchServices/azs-3688?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2ODg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cee5c03a-a7dd-4585-870b-36bd312010e2" + "1efd705e-0b0d-44c9-8f9b-477fa2288ba1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -581,41 +581,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:46 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cee5c03a-a7dd-4585-870b-36bd312010e2" + "1efd705e-0b0d-44c9-8f9b-477fa2288ba1" ], "request-id": [ - "cee5c03a-a7dd-4585-870b-36bd312010e2" + "1efd705e-0b0d-44c9-8f9b-477fa2288ba1" ], "elapsed-time": [ - "773" + "634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14963" + "14998" ], "x-ms-correlation-request-id": [ - "41449786-5a84-4c44-808f-898374201064" + "799dc318-be5f-4f6d-a2cc-05bc4e69e379" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203047Z:41449786-5a84-4c44-808f-898374201064" + "NORTHEUROPE:20190805T235933Z:799dc318-be5f-4f6d-a2cc-05bc4e69e379" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Mon, 05 Aug 2019 23:59:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -624,13 +624,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7866", - "azsmnet5073", - "azsmnet8515", - "azsmnet5755" + "azsmnet156", + "azsmnet1737", + "azsmnet9155", + "azsmnet2395" ], "GenerateServiceName": [ - "azs-4669" + "azs-3688" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json index 23e96175b6b4..45e368bbfcd7 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5ed34ca-2dce-4cad-8fbc-67140bec474d" + "12c5823e-2049-4e42-b846-bedd6d051b08" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:37 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1196" ], "x-ms-request-id": [ - "567352f1-efde-4710-b77f-74a2a5582f2b" + "5a01292b-9cda-4a1c-93c0-8998bf2d0b56" ], "x-ms-correlation-request-id": [ - "567352f1-efde-4710-b77f-74a2a5582f2b" + "5a01292b-9cda-4a1c-93c0-8998bf2d0b56" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202237Z:567352f1-efde-4710-b77f-74a2a5582f2b" + "NORTHEUROPE:20190806T000036Z:5a01292b-9cda-4a1c-93c0-8998bf2d0b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:35 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9192?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8450?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NDUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e4b15c2-b449-4cd6-a8f0-bd2fa3bd1a98" + "a938290a-e361-43b7-a657-20a68dc1a239" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:38 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1196" ], "x-ms-request-id": [ - "af0ca226-7671-4018-b44b-b9145a8a0668" + "1bca3c4d-eaf3-4438-95e5-986fd934b25a" ], "x-ms-correlation-request-id": [ - "af0ca226-7671-4018-b44b-b9145a8a0668" + "1bca3c4d-eaf3-4438-95e5-986fd934b25a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202238Z:af0ca226-7671-4018-b44b-b9145a8a0668" + "NORTHEUROPE:20190806T000036Z:1bca3c4d-eaf3-4438-95e5-986fd934b25a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:36 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192\",\r\n \"name\": \"azsmnet9192\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450\",\r\n \"name\": \"azsmnet8450\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192/providers/Microsoft.Search/searchServices/azs-6152?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450/providers/Microsoft.Search/searchServices/azs-955?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df3ca524-9ae2-463f-84ef-dcdf0f53ead2" + "d99dd679-b85f-4a35-81b7-064aff52d732" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A22%3A41.0662639Z'\"" + "W/\"datetime'2019-08-06T00%3A00%3A39.3387909Z'\"" ], "x-ms-request-id": [ - "df3ca524-9ae2-463f-84ef-dcdf0f53ead2" + "d99dd679-b85f-4a35-81b7-064aff52d732" ], "request-id": [ - "df3ca524-9ae2-463f-84ef-dcdf0f53ead2" + "d99dd679-b85f-4a35-81b7-064aff52d732" ], "elapsed-time": [ - "988" + "1585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1197" ], "x-ms-correlation-request-id": [ - "f4109044-6d96-41d2-81e4-ea66e6a04f5f" + "8cdb54c7-e4ad-4858-89fb-b3cceffd5b3b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202241Z:f4109044-6d96-41d2-81e4-ea66e6a04f5f" + "NORTHEUROPE:20190806T000040Z:8cdb54c7-e4ad-4858-89fb-b3cceffd5b3b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:40 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192/providers/Microsoft.Search/searchServices/azs-6152\",\r\n \"name\": \"azs-6152\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450/providers/Microsoft.Search/searchServices/azs-955\",\r\n \"name\": \"azs-955\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192/providers/Microsoft.Search/searchServices/azs-6152/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTUyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450/providers/Microsoft.Search/searchServices/azs-955/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTUvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f440122-e753-4d0f-8a5b-417a6ce29c26" + "b67b8a30-3c92-40be-aa46-d0b126295094" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:43 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3f440122-e753-4d0f-8a5b-417a6ce29c26" + "b67b8a30-3c92-40be-aa46-d0b126295094" ], "request-id": [ - "3f440122-e753-4d0f-8a5b-417a6ce29c26" + "b67b8a30-3c92-40be-aa46-d0b126295094" ], "elapsed-time": [ - "145" + "235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1197" ], "x-ms-correlation-request-id": [ - "f3d8e097-af26-4478-9122-115750c5e331" + "5199d379-46d8-4ba9-8c41-5d17cbde2409" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202243Z:f3d8e097-af26-4478-9122-115750c5e331" + "NORTHEUROPE:20190806T000042Z:5199d379-46d8-4ba9-8c41-5d17cbde2409" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:42 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"22139BF4ED8217E771059D43375A6AC3\",\r\n \"secondaryKey\": \"66E2F50D6EB337E2D99BBE036E869202\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"516B93E89D3EF4EBFB724611E957F3F1\",\r\n \"secondaryKey\": \"36B04F5312B81AA783534EC82C463C9A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192/providers/Microsoft.Search/searchServices/azs-6152/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTUyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450/providers/Microsoft.Search/searchServices/azs-955/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTUvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b77da33e-9022-40fe-87c8-937613070f8b" + "957b2576-d749-4fff-9a52-e9ac2c1da353" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:43 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b77da33e-9022-40fe-87c8-937613070f8b" + "957b2576-d749-4fff-9a52-e9ac2c1da353" ], "request-id": [ - "b77da33e-9022-40fe-87c8-937613070f8b" + "957b2576-d749-4fff-9a52-e9ac2c1da353" ], "elapsed-time": [ - "93" + "285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-correlation-request-id": [ - "6e324aed-c156-49be-9cb6-bfea882a2823" + "76b9fbfe-ffaa-4cab-bc8b-033453b2b9df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202243Z:6e324aed-c156-49be-9cb6-bfea882a2823" + "NORTHEUROPE:20190806T000043Z:76b9fbfe-ffaa-4cab-bc8b-033453b2b9df" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:43 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"386B4F5BE2BB312F1C8BF9B849A86CC1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4BE1183721D85CCBED56787A07071851\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1629\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1628\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "e95b1408-248f-482d-aa36-fb5329cf572b" + "906281cf-4985-4350-a6ae-9cf95ce8ee68" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "22139BF4ED8217E771059D43375A6AC3" + "516B93E89D3EF4EBFB724611E957F3F1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E1BFA782F\"" + "W/\"0x8D71A0121F605A9\"" ], "Location": [ - "https://azs-6152.search-dogfood.windows-int.net/indexes('azsmnet1629')?api-version=2019-05-06" + "https://azs-955.search-dogfood.windows-int.net/indexes('azsmnet1628')?api-version=2019-05-06" ], "request-id": [ - "e95b1408-248f-482d-aa36-fb5329cf572b" + "906281cf-4985-4350-a6ae-9cf95ce8ee68" ], "elapsed-time": [ - "750" + "2315" ], "OData-Version": [ "4.0" @@ -398,68 +395,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:00:46 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2535" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6152.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E1BFA782F\\\"\",\r\n \"name\": \"azsmnet1629\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-955.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0121F605A9\\\"\",\r\n \"name\": \"azsmnet1628\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1403\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet153\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "65f8a7e6-43e4-45fe-976d-190cc77b2c20" + "21df0e73-14c1-49c9-b8bd-f71a321fd066" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "22139BF4ED8217E771059D43375A6AC3" + "516B93E89D3EF4EBFB724611E957F3F1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:45 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E1C1CD59F\"" + "W/\"0x8D71A0122267021\"" ], "Location": [ - "https://azs-6152.search-dogfood.windows-int.net/datasources('azsmnet1403')?api-version=2019-05-06" + "https://azs-955.search-dogfood.windows-int.net/datasources('azsmnet153')?api-version=2019-05-06" ], "request-id": [ - "65f8a7e6-43e4-45fe-976d-190cc77b2c20" + "21df0e73-14c1-49c9-b8bd-f71a321fd066" ], "elapsed-time": [ - "113" + "109" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:00:46 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "362" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6152.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E1C1CD59F\\\"\",\r\n \"name\": \"azsmnet1403\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-955.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0122267021\\\"\",\r\n \"name\": \"azsmnet153\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet6037')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjAzNycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet1372')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTM3MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet6037\",\r\n \"dataSourceName\": \"azsmnet1403\",\r\n \"targetIndexName\": \"azsmnet1629\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1372\",\r\n \"dataSourceName\": \"azsmnet153\",\r\n \"targetIndexName\": \"azsmnet1628\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "133ef856-a70a-4ee5-bbd8-4abbbd4c81fe" + "cc766913-e3dc-40bf-99df-0d40eb6ecf9b" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "22139BF4ED8217E771059D43375A6AC3" + "516B93E89D3EF4EBFB724611E957F3F1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1260" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:49 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E1DEB4EFC\"" + "W/\"0x8D71A0122A29BCF\"" ], "Location": [ - "https://azs-6152.search-dogfood.windows-int.net/indexers('azsmnet6037')?api-version=2019-05-06" + "https://azs-955.search-dogfood.windows-int.net/indexers('azsmnet1372')?api-version=2019-05-06" ], "request-id": [ - "133ef856-a70a-4ee5-bbd8-4abbbd4c81fe" + "cc766913-e3dc-40bf-99df-0d40eb6ecf9b" ], "elapsed-time": [ - "2086" + "172" ], "OData-Version": [ "4.0" @@ -545,71 +542,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:00:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1177" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6152.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E1DEB4EFC\\\"\",\r\n \"name\": \"azsmnet6037\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet1403\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1629\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-955.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0122A29BCF\\\"\",\r\n \"name\": \"azsmnet1372\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet153\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1628\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet6037')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjAzNycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet1372')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTM3MicpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet6037\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet1403\",\r\n \"targetIndexName\": \"azsmnet1629\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4E1DEB4EFC\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1372\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet153\",\r\n \"targetIndexName\": \"azsmnet1628\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A0122A29BCF\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "cb274d98-ab1e-400e-b624-000719473998" + "cd3980ee-5f19-46ca-9ad7-f32f5b3151bb" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ "*" ], "api-key": [ - "22139BF4ED8217E771059D43375A6AC3" + "516B93E89D3EF4EBFB724611E957F3F1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1284" + "1417" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:49 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4E1E73D9FE\"" + "W/\"0x8D71A0122C1C417\"" ], "request-id": [ - "cb274d98-ab1e-400e-b624-000719473998" + "cd3980ee-5f19-46ca-9ad7-f32f5b3151bb" ], "elapsed-time": [ - "744" + "113" ], "OData-Version": [ "4.0" @@ -620,33 +617,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1124" + "Date": [ + "Tue, 06 Aug 2019 00:00:47 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1190" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6152.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4E1E73D9FE\\\"\",\r\n \"name\": \"azsmnet6037\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet1403\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1629\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-955.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0122C1C417\\\"\",\r\n \"name\": \"azsmnet1372\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet153\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1628\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9192/providers/Microsoft.Search/searchServices/azs-6152?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8450/providers/Microsoft.Search/searchServices/azs-955?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feedafcc-1ff7-413e-b48f-e48ad7215bae" + "97b7e862-282b-4ce4-8d5f-807c4b867068" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -656,41 +656,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:22:52 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "feedafcc-1ff7-413e-b48f-e48ad7215bae" + "97b7e862-282b-4ce4-8d5f-807c4b867068" ], "request-id": [ - "feedafcc-1ff7-413e-b48f-e48ad7215bae" + "97b7e862-282b-4ce4-8d5f-807c4b867068" ], "elapsed-time": [ - "1258" + "740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14950" + "14996" ], "x-ms-correlation-request-id": [ - "df8991f3-4a2c-4c74-9cd3-9e45999be606" + "c66cd56a-e2f9-424a-9fe1-eff7891f7821" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202253Z:df8991f3-4a2c-4c74-9cd3-9e45999be606" + "NORTHEUROPE:20190806T000050Z:c66cd56a-e2f9-424a-9fe1-eff7891f7821" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:00:49 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -699,13 +699,13 @@ ], "Names": { "GenerateName": [ - "azsmnet9192", - "azsmnet1629", - "azsmnet1403", - "azsmnet6037" + "azsmnet8450", + "azsmnet1628", + "azsmnet153", + "azsmnet1372" ], "GenerateServiceName": [ - "azs-6152" + "azs-955" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json index 69c2fab1161b..18ae521106c0 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05e648bf-7393-48ac-93f9-e442680aa571" + "477f424d-57d7-42d6-98e8-4891abab947b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:00 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1185" ], "x-ms-request-id": [ - "7212b436-6f89-4f86-8acd-22e1b65fec29" + "61ad5fbc-3e2b-4589-ac3b-b3e1fbea6718" ], "x-ms-correlation-request-id": [ - "7212b436-6f89-4f86-8acd-22e1b65fec29" + "61ad5fbc-3e2b-4589-ac3b-b3e1fbea6718" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203000Z:7212b436-6f89-4f86-8acd-22e1b65fec29" + "NORTHEUROPE:20190806T000127Z:61ad5fbc-3e2b-4589-ac3b-b3e1fbea6718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:27 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet17?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2309?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45af6ddd-9766-4b9b-9a94-b4e82f75fd23" + "5f6002dd-2ab3-46f7-bfff-88441fa37ea8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:00 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1195" ], "x-ms-request-id": [ - "2b72e435-766a-4600-8dc5-7c7ad0efaf80" + "6fcffdd1-02fb-482d-98d0-bf7166a9d791" ], "x-ms-correlation-request-id": [ - "2b72e435-766a-4600-8dc5-7c7ad0efaf80" + "6fcffdd1-02fb-482d-98d0-bf7166a9d791" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203000Z:2b72e435-766a-4600-8dc5-7c7ad0efaf80" + "NORTHEUROPE:20190806T000128Z:6fcffdd1-02fb-482d-98d0-bf7166a9d791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:28 GMT" + ], "Content-Length": [ - "171" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17\",\r\n \"name\": \"azsmnet17\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309\",\r\n \"name\": \"azsmnet2309\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17/providers/Microsoft.Search/searchServices/azs-2469?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtMjQ2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7883?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a482b1cb-ff43-4525-a66a-efa0ad03b8a2" + "d68638c5-906c-4bcf-aaa0-fd636f0188ab" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:03 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A30%3A02.9540517Z'\"" + "W/\"datetime'2019-08-06T00%3A01%3A30.8950909Z'\"" ], "x-ms-request-id": [ - "a482b1cb-ff43-4525-a66a-efa0ad03b8a2" + "d68638c5-906c-4bcf-aaa0-fd636f0188ab" ], "request-id": [ - "a482b1cb-ff43-4525-a66a-efa0ad03b8a2" + "d68638c5-906c-4bcf-aaa0-fd636f0188ab" ], "elapsed-time": [ - "772" + "1062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1194" ], "x-ms-correlation-request-id": [ - "3a55556c-9db3-4059-a26b-bd5e3f76fa67" + "7b87a854-470a-4ee8-a4d9-253b78baa88b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203003Z:3a55556c-9db3-4059-a26b-bd5e3f76fa67" + "NORTHEUROPE:20190806T000131Z:7b87a854-470a-4ee8-a4d9-253b78baa88b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:30 GMT" + ], "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17/providers/Microsoft.Search/searchServices/azs-2469\",\r\n \"name\": \"azs-2469\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7883\",\r\n \"name\": \"azs-7883\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17/providers/Microsoft.Search/searchServices/azs-2469/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtMjQ2OS9saXN0QWRtaW5LZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7883/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODgzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b66c5345-b56d-48f9-9a46-953e794f587f" + "e3f9cbc3-4fe6-4359-bd0a-f64d754fc361" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:09 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b66c5345-b56d-48f9-9a46-953e794f587f" + "e3f9cbc3-4fe6-4359-bd0a-f64d754fc361" ], "request-id": [ - "b66c5345-b56d-48f9-9a46-953e794f587f" + "e3f9cbc3-4fe6-4359-bd0a-f64d754fc361" ], "elapsed-time": [ - "328" + "140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1194" ], "x-ms-correlation-request-id": [ - "d4c48f2a-99c6-4c9d-aeca-d57f0dc4221e" + "bc7e6a52-6a43-47c5-9047-299c1e718f4f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203010Z:d4c48f2a-99c6-4c9d-aeca-d57f0dc4221e" + "NORTHEUROPE:20190806T000132Z:bc7e6a52-6a43-47c5-9047-299c1e718f4f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:32 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"CF09143B537B5465EBF387A6966158B0\",\r\n \"secondaryKey\": \"65E265A5E2468E22184AE96316E0C592\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"B51F30315230F87CF5A54E48CDD9DC4A\",\r\n \"secondaryKey\": \"1D5BD2751577BA9C51C83BA1EED32176\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17/providers/Microsoft.Search/searchServices/azs-2469/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtMjQ2OS9saXN0UXVlcnlLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7883/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODgzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de9ceb0b-60b9-44a5-b88d-e8ee42dd9b97" + "46c139cf-c2a9-44db-beee-1b30f80070a4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:10 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "de9ceb0b-60b9-44a5-b88d-e8ee42dd9b97" + "46c139cf-c2a9-44db-beee-1b30f80070a4" ], "request-id": [ - "de9ceb0b-60b9-44a5-b88d-e8ee42dd9b97" + "46c139cf-c2a9-44db-beee-1b30f80070a4" ], "elapsed-time": [ - "322" + "117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14996" ], "x-ms-correlation-request-id": [ - "51a2cfef-2cb3-49ae-af9a-5ff8a0e19a32" + "3fa5f321-324c-4c3f-a1c3-7f4690c93a9a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203011Z:51a2cfef-2cb3-49ae-af9a-5ff8a0e19a32" + "NORTHEUROPE:20190806T000133Z:3fa5f321-324c-4c3f-a1c3-7f4690c93a9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:01:32 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"8DFC336110974146F5CB7397E86AD291\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3016EBFC3BEA5F0369F21A6F3E106351\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9781\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2913\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "53189acc-e1a5-4c5c-85e7-7edc4bcbf64e" + "a9683be7-adc3-42cf-89ec-24d072450340" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "CF09143B537B5465EBF387A6966158B0" + "B51F30315230F87CF5A54E48CDD9DC4A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F2A98C917\"" + "W/\"0x8D71A013F615ABA\"" ], "Location": [ - "https://azs-2469.search-dogfood.windows-int.net/indexes('azsmnet9781')?api-version=2019-05-06" + "https://azs-7883.search-dogfood.windows-int.net/indexes('azsmnet2913')?api-version=2019-05-06" ], "request-id": [ - "53189acc-e1a5-4c5c-85e7-7edc4bcbf64e" + "a9683be7-adc3-42cf-89ec-24d072450340" ], "elapsed-time": [ - "688" + "1624" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:01:35 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2469.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2A98C917\\\"\",\r\n \"name\": \"azsmnet9781\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7883.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A013F615ABA\\\"\",\r\n \"name\": \"azsmnet2913\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7012\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6711\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "219d796a-199c-4aa2-92de-6e3b27581c60" + "bcabf0e7-79b7-43e5-a18d-b75d03674f96" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "CF09143B537B5465EBF387A6966158B0" + "B51F30315230F87CF5A54E48CDD9DC4A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F2AADB5BC\"" + "W/\"0x8D71A013F7A6705\"" ], "Location": [ - "https://azs-2469.search-dogfood.windows-int.net/datasources('azsmnet7012')?api-version=2019-05-06" + "https://azs-7883.search-dogfood.windows-int.net/datasources('azsmnet6711')?api-version=2019-05-06" ], "request-id": [ - "219d796a-199c-4aa2-92de-6e3b27581c60" + "bcabf0e7-79b7-43e5-a18d-b75d03674f96" ], "elapsed-time": [ - "29" + "32" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:01:35 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2469.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2AADB5BC\\\"\",\r\n \"name\": \"azsmnet7012\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7883.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A013F7A6705\\\"\",\r\n \"name\": \"azsmnet6711\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9775')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTc3NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet4343')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDM0MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9775\",\r\n \"dataSourceName\": \"azsmnet7012\",\r\n \"targetIndexName\": \"azsmnet9781\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4343\",\r\n \"dataSourceName\": \"azsmnet6711\",\r\n \"targetIndexName\": \"azsmnet2913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "65d88c89-caa6-4348-9511-855901057f14" + "d35d97cc-cbb8-4ce8-bc07-c0512913f3e6" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "CF09143B537B5465EBF387A6966158B0" + "B51F30315230F87CF5A54E48CDD9DC4A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1261" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F2BB728EE\"" + "W/\"0x8D71A014017DE5A\"" ], "Location": [ - "https://azs-2469.search-dogfood.windows-int.net/indexers('azsmnet9775')?api-version=2019-05-06" + "https://azs-7883.search-dogfood.windows-int.net/indexers('azsmnet4343')?api-version=2019-05-06" ], "request-id": [ - "65d88c89-caa6-4348-9511-855901057f14" + "d35d97cc-cbb8-4ce8-bc07-c0512913f3e6" ], "elapsed-time": [ - "693" + "216" ], "OData-Version": [ "4.0" @@ -545,68 +542,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:01:36 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1179" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2469.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2BB728EE\\\"\",\r\n \"name\": \"azsmnet9775\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7012\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet9781\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7883.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A014017DE5A\\\"\",\r\n \"name\": \"azsmnet4343\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6711\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet2913\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9775')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTc3NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet4343')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDM0MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9775\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7012\",\r\n \"targetIndexName\": \"azsmnet9781\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2BB728EE\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4343\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6711\",\r\n \"targetIndexName\": \"azsmnet2913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A014017DE5A\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "83626228-ea40-4955-b1af-f3f0e56211b7" + "e47f8313-3e35-4a5b-b712-0cd0b220fc39" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "CF09143B537B5465EBF387A6966158B0" + "B51F30315230F87CF5A54E48CDD9DC4A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1284" + "1418" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4F2BD3B88D\"" + "W/\"0x8D71A01403C5F10\"" ], "request-id": [ - "83626228-ea40-4955-b1af-f3f0e56211b7" + "e47f8313-3e35-4a5b-b712-0cd0b220fc39" ], "elapsed-time": [ - "107" + "129" ], "OData-Version": [ "4.0" @@ -617,68 +614,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1124" + "Date": [ + "Tue, 06 Aug 2019 00:01:36 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1192" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2469.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2BD3B88D\\\"\",\r\n \"name\": \"azsmnet9775\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7012\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet9781\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7883.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01403C5F10\\\"\",\r\n \"name\": \"azsmnet4343\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6711\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet2913\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet9775')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTc3NScpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet4343')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDM0MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9775\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7012\",\r\n \"targetIndexName\": \"azsmnet9781\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4F2BD3B88D\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4343\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6711\",\r\n \"targetIndexName\": \"azsmnet2913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A01403C5F10\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "5b1c1639-c243-4797-90b3-13d02f0f3376" + "3d389b26-96bb-46d1-9761-e356f0402846" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ - "\"0x8D6CB4F2BB728EE\"" + "\"0x8D71A014017DE5A\"" ], "api-key": [ - "CF09143B537B5465EBF387A6966158B0" + "B51F30315230F87CF5A54E48CDD9DC4A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1284" + "1418" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:21 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "5b1c1639-c243-4797-90b3-13d02f0f3376" + "3d389b26-96bb-46d1-9761-e356f0402846" ], "elapsed-time": [ - "13" + "14" ], "OData-Version": [ "4.0" @@ -689,8 +686,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "160" + "Date": [ + "Tue, 06 Aug 2019 00:01:36 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -700,25 +697,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "160" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"\r\n }\r\n}", "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet17/providers/Microsoft.Search/searchServices/azs-2469?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtMjQ2OT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7883?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf893c99-aac7-4a68-a2dd-28d101d08428" + "b525e5e4-2d1a-4863-a696-012f4bab3f81" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -728,41 +728,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:30:25 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cf893c99-aac7-4a68-a2dd-28d101d08428" + "b525e5e4-2d1a-4863-a696-012f4bab3f81" ], "request-id": [ - "cf893c99-aac7-4a68-a2dd-28d101d08428" + "b525e5e4-2d1a-4863-a696-012f4bab3f81" ], "elapsed-time": [ - "1065" + "662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14947" + "14993" ], "x-ms-correlation-request-id": [ - "c199d936-b671-4ca0-949c-514d1d786e9a" + "c675cc18-2140-4656-8807-abdc99c462f9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T203025Z:c199d936-b671-4ca0-949c-514d1d786e9a" + "NORTHEUROPE:20190806T000139Z:c675cc18-2140-4656-8807-abdc99c462f9" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:01:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -771,13 +771,13 @@ ], "Names": { "GenerateName": [ - "azsmnet17", - "azsmnet9781", - "azsmnet7012", - "azsmnet9775" + "azsmnet2309", + "azsmnet2913", + "azsmnet6711", + "azsmnet4343" ], "GenerateServiceName": [ - "azs-2469" + "azs-7883" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json index 94a1892c67d8..ecaecd029099 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af2f4bca-b680-41cc-8a70-f2cce477514b" + "5e5328bc-f35a-4eca-8198-d9e9a108bcdc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:29 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1150" + "1197" ], "x-ms-request-id": [ - "578306aa-2296-4f15-be48-fc9cca75a94a" + "b1d0c7a2-7c20-434c-9c8e-101d351c07a4" ], "x-ms-correlation-request-id": [ - "578306aa-2296-4f15-be48-fc9cca75a94a" + "b1d0c7a2-7c20-434c-9c8e-101d351c07a4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202730Z:578306aa-2296-4f15-be48-fc9cca75a94a" + "NORTHEUROPE:20190806T000020Z:b1d0c7a2-7c20-434c-9c8e-101d351c07a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:20 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5842?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1ODQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6865?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85c8e285-424c-4bb1-8989-590b60c4493c" + "f96d35cd-39f9-493e-9f00-6186816d5c23" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:30 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1197" ], "x-ms-request-id": [ - "e70474d1-055a-4c0e-bcb9-0ba57f43b177" + "6311058c-5425-4e9a-b79c-6c58a19703d8" ], "x-ms-correlation-request-id": [ - "e70474d1-055a-4c0e-bcb9-0ba57f43b177" + "6311058c-5425-4e9a-b79c-6c58a19703d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202731Z:e70474d1-055a-4c0e-bcb9-0ba57f43b177" + "NORTHEUROPE:20190806T000021Z:6311058c-5425-4e9a-b79c-6c58a19703d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:21 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842\",\r\n \"name\": \"azsmnet5842\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865\",\r\n \"name\": \"azsmnet6865\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842/providers/Microsoft.Search/searchServices/azs-3754?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865/providers/Microsoft.Search/searchServices/azs-8205?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjA1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f271d531-0789-4707-813d-548c5bff0ac1" + "63747c38-e3c8-46b6-bf37-eee6ff3b704c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T20%3A27%3A33.2289739Z'\"" + "W/\"datetime'2019-08-06T00%3A00%3A23.3108869Z'\"" ], "x-ms-request-id": [ - "f271d531-0789-4707-813d-548c5bff0ac1" + "63747c38-e3c8-46b6-bf37-eee6ff3b704c" ], "request-id": [ - "f271d531-0789-4707-813d-548c5bff0ac1" + "63747c38-e3c8-46b6-bf37-eee6ff3b704c" ], "elapsed-time": [ - "807" + "1029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1197" ], "x-ms-correlation-request-id": [ - "14faddd8-671f-49af-ba15-42cf283a47e9" + "43bb1b73-172c-470b-82b8-f7ed1b1d2648" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202733Z:14faddd8-671f-49af-ba15-42cf283a47e9" + "NORTHEUROPE:20190806T000023Z:43bb1b73-172c-470b-82b8-f7ed1b1d2648" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:23 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842/providers/Microsoft.Search/searchServices/azs-3754\",\r\n \"name\": \"azs-3754\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865/providers/Microsoft.Search/searchServices/azs-8205\",\r\n \"name\": \"azs-8205\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842/providers/Microsoft.Search/searchServices/azs-3754/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865/providers/Microsoft.Search/searchServices/azs-8205/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjA1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a334c1-88eb-4938-9571-c5bf62126eaf" + "53abb8c7-8a29-4bd5-812e-6979e594b9c8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:35 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4a334c1-88eb-4938-9571-c5bf62126eaf" + "53abb8c7-8a29-4bd5-812e-6979e594b9c8" ], "request-id": [ - "d4a334c1-88eb-4938-9571-c5bf62126eaf" + "53abb8c7-8a29-4bd5-812e-6979e594b9c8" ], "elapsed-time": [ - "169" + "165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1163" + "1187" ], "x-ms-correlation-request-id": [ - "02e245ec-f9d7-4232-99f1-9f811d3a633e" + "d04a3f8f-066d-4786-a7cc-f9cfb7589d73" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202735Z:02e245ec-f9d7-4232-99f1-9f811d3a633e" + "NORTHEUROPE:20190806T000025Z:d04a3f8f-066d-4786-a7cc-f9cfb7589d73" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:24 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"19AA12A9A3FB62682730201BF620862E\",\r\n \"secondaryKey\": \"4D84BF54F178143E67B6972726127424\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"A7CC674A028E46684F7133BC216EFF35\",\r\n \"secondaryKey\": \"2ED7B39489615D3F0675906C1FCA4078\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842/providers/Microsoft.Search/searchServices/azs-3754/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865/providers/Microsoft.Search/searchServices/azs-8205/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjA1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f24b9253-9f28-4979-94f4-4f2046ef5848" + "e5d3509b-0e35-48e3-9c4b-6456fcfa41bd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:35 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f24b9253-9f28-4979-94f4-4f2046ef5848" + "e5d3509b-0e35-48e3-9c4b-6456fcfa41bd" ], "request-id": [ - "f24b9253-9f28-4979-94f4-4f2046ef5848" + "e5d3509b-0e35-48e3-9c4b-6456fcfa41bd" ], "elapsed-time": [ - "114" + "104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14914" ], "x-ms-correlation-request-id": [ - "9c424bae-1d1e-4c9d-8c6c-4ce861f3f838" + "b24a9ad5-9ee5-491f-8855-91e999a96d7c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202736Z:9c424bae-1d1e-4c9d-8c6c-4ce861f3f838" + "NORTHEUROPE:20190806T000025Z:b24a9ad5-9ee5-491f-8855-91e999a96d7c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Tue, 06 Aug 2019 00:00:25 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"44D4EE47176BF6FE32F48788DC9A56C7\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6AD32CFA4907A1A1F140D4DD20F7DF67\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/indexes?api-version=2019-05-06", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8705\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4346\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"retrievable\": true,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "7cf7b174-93c4-4d77-b163-270a0e875885" + "c3528465-93ed-4ace-a9e2-dae48d539c68" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "19AA12A9A3FB62682730201BF620862E" + "A7CC674A028E46684F7133BC216EFF35" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:38 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ECAA40708\"" + "W/\"0x8D71A0116F72F5D\"" ], "Location": [ - "https://azs-3754.search-dogfood.windows-int.net/indexes('azsmnet8705')?api-version=2019-05-06" + "https://azs-8205.search-dogfood.windows-int.net/indexes('azsmnet4346')?api-version=2019-05-06" ], "request-id": [ - "7cf7b174-93c4-4d77-b163-270a0e875885" + "c3528465-93ed-4ace-a9e2-dae48d539c68" ], "elapsed-time": [ - "815" + "1491" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "2536" + "Date": [ + "Tue, 06 Aug 2019 00:00:27 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "2536" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3754.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ECAA40708\\\"\",\r\n \"name\": \"azsmnet8705\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8205.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0116F72F5D\\\"\",\r\n \"name\": \"azsmnet4346\",\r\n \"defaultScoringProfile\": null,\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "StatusCode": 201 }, { "RequestUri": "/datasources?api-version=2019-05-06", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4012\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6390\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "6c0096a1-4d5f-4326-af5d-cad058f5c4cc" + "885dcd8c-a13a-41ce-b672-320ca3540e07" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "19AA12A9A3FB62682730201BF620862E" + "A7CC674A028E46684F7133BC216EFF35" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:38 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ECAB87E59\"" + "W/\"0x8D71A01171062B6\"" ], "Location": [ - "https://azs-3754.search-dogfood.windows-int.net/datasources('azsmnet4012')?api-version=2019-05-06" + "https://azs-8205.search-dogfood.windows-int.net/datasources('azsmnet6390')?api-version=2019-05-06" ], "request-id": [ - "6c0096a1-4d5f-4326-af5d-cad058f5c4cc" + "885dcd8c-a13a-41ce-b672-320ca3540e07" ], "elapsed-time": [ - "29" + "33" ], "OData-Version": [ "4.0" @@ -470,71 +467,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "364" + "Date": [ + "Tue, 06 Aug 2019 00:00:27 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "364" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3754.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ECAB87E59\\\"\",\r\n \"name\": \"azsmnet4012\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8205.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01171062B6\\\"\",\r\n \"name\": \"azsmnet6390\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": null\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet1767')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTc2NycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet611')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjExJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet1767\",\r\n \"dataSourceName\": \"azsmnet4012\",\r\n \"targetIndexName\": \"azsmnet8705\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet611\",\r\n \"dataSourceName\": \"azsmnet6390\",\r\n \"targetIndexName\": \"azsmnet4346\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "632de7d1-9eb3-4f75-bc20-2e909e156e84" + "1a617658-ba26-42b5-87d2-ac6137fd83c7" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "19AA12A9A3FB62682730201BF620862E" + "A7CC674A028E46684F7133BC216EFF35" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1260" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ECBEA6AB6\"" + "W/\"0x8D71A0117E0DD30\"" ], "Location": [ - "https://azs-3754.search-dogfood.windows-int.net/indexers('azsmnet1767')?api-version=2019-05-06" + "https://azs-8205.search-dogfood.windows-int.net/indexers('azsmnet611')?api-version=2019-05-06" ], "request-id": [ - "632de7d1-9eb3-4f75-bc20-2e909e156e84" + "1a617658-ba26-42b5-87d2-ac6137fd83c7" ], "elapsed-time": [ - "225" + "716" ], "OData-Version": [ "4.0" @@ -545,71 +542,71 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Tue, 06 Aug 2019 00:00:29 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1178" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3754.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ECBEA6AB6\\\"\",\r\n \"name\": \"azsmnet1767\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4012\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8705\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8205.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A0117E0DD30\\\"\",\r\n \"name\": \"azsmnet611\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6390\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4346\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet1767')?api-version=2019-05-06", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTc2NycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/indexers('azsmnet611')?api-version=2019-05-06", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjExJyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet1767\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet4012\",\r\n \"targetIndexName\": \"azsmnet8705\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D6CB4ECBEA6AB6\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet611\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6390\",\r\n \"targetIndexName\": \"azsmnet4346\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D71A0117E0DD30\\\"\"\r\n}", "RequestHeaders": { "client-request-id": [ - "add014fe-7d1b-4343-b2d3-d1a31038eefb" + "d7955d21-1464-4960-b3e9-e74e46338fc7" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "If-Match": [ - "\"0x8D6CB4ECBEA6AB6\"" + "\"0x8D71A0117E0DD30\"" ], "api-key": [ - "19AA12A9A3FB62682730201BF620862E" + "A7CC674A028E46684F7133BC216EFF35" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1284" + "1417" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB4ECC0CEF42\"" + "W/\"0x8D71A01180A19FC\"" ], "request-id": [ - "add014fe-7d1b-4343-b2d3-d1a31038eefb" + "d7955d21-1464-4960-b3e9-e74e46338fc7" ], "elapsed-time": [ - "155" + "176" ], "OData-Version": [ "4.0" @@ -620,33 +617,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1124" + "Date": [ + "Tue, 06 Aug 2019 00:00:29 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1191" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3754.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB4ECC0CEF42\\\"\",\r\n \"name\": \"azsmnet1767\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet4012\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8705\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8205.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71A01180A19FC\\\"\",\r\n \"name\": \"azsmnet611\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6390\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4346\",\r\n \"disabled\": null,\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlEncode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": {\r\n \"name\": \"urlDecode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5842/providers/Microsoft.Search/searchServices/azs-3754?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6865/providers/Microsoft.Search/searchServices/azs-8205?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjA1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "472f78d8-fb5e-45db-aa78-029ad637560f" + "63d1e50c-cbed-4490-b258-67fdd612e044" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -656,41 +656,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 20:27:43 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "472f78d8-fb5e-45db-aa78-029ad637560f" + "63d1e50c-cbed-4490-b258-67fdd612e044" ], "request-id": [ - "472f78d8-fb5e-45db-aa78-029ad637560f" + "63d1e50c-cbed-4490-b258-67fdd612e044" ], "elapsed-time": [ - "1019" + "753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14967" + "14998" ], "x-ms-correlation-request-id": [ - "6995fb29-17d7-462f-ad23-83e0dee0de66" + "b488b267-e80c-4bf3-bb42-d1b71f5d98ea" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T202744Z:6995fb29-17d7-462f-ad23-83e0dee0de66" + "NORTHEUROPE:20190806T000032Z:b488b267-e80c-4bf3-bb42-d1b71f5d98ea" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Tue, 06 Aug 2019 00:00:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -699,13 +699,13 @@ ], "Names": { "GenerateName": [ - "azsmnet5842", - "azsmnet8705", - "azsmnet4012", - "azsmnet1767" + "azsmnet6865", + "azsmnet4346", + "azsmnet6390", + "azsmnet611" ], "GenerateServiceName": [ - "azs-3754" + "azs-8205" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json index d80ecb30e3df..8a4bc14f2ecf 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ceb9e90-15ab-48c8-a152-cde55f07ce9b" + "09f72fc2-a09a-4f54-ac73-b6c261ccd3c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:56 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1197" ], "x-ms-request-id": [ - "2de6b1a8-96d6-445f-ab22-4163861b942f" + "3a2cb4be-14c6-494c-8e71-dff224b88a7b" ], "x-ms-correlation-request-id": [ - "2de6b1a8-96d6-445f-ab22-4163861b942f" + "3a2cb4be-14c6-494c-8e71-dff224b88a7b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221057Z:2de6b1a8-96d6-445f-ab22-4163861b942f" + "NORTHEUROPE:20190808T174719Z:3a2cb4be-14c6-494c-8e71-dff224b88a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:18 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7696?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3Njk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5768?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1NzY4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a0aeb2c7-8edf-44eb-beef-f241a6af2798" + "cc35d6f3-4e8c-4998-93b6-f4ccc89273f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:57 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1197" ], "x-ms-request-id": [ - "6310ca5b-7251-4f88-9a89-24d53319262d" + "75b4ba0f-5049-4ca7-b525-8f59aa99ebbf" ], "x-ms-correlation-request-id": [ - "6310ca5b-7251-4f88-9a89-24d53319262d" + "75b4ba0f-5049-4ca7-b525-8f59aa99ebbf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221058Z:6310ca5b-7251-4f88-9a89-24d53319262d" + "NORTHEUROPE:20190808T174720Z:75b4ba0f-5049-4ca7-b525-8f59aa99ebbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:19 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696\",\r\n \"name\": \"azsmnet7696\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768\",\r\n \"name\": \"azsmnet5768\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696/providers/Microsoft.Search/searchServices/azs-5507?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTA3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768/providers/Microsoft.Search/searchServices/azs-9953?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05OTUzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f990264-8dc6-4289-9e6c-e805b418a8f0" + "d2c85741-9267-41c6-aacd-8deb939912ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:00 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A11%3A00.2822098Z'\"" + "W/\"datetime'2019-08-08T17%3A47%3A22.5683069Z'\"" ], "x-ms-request-id": [ - "5f990264-8dc6-4289-9e6c-e805b418a8f0" + "d2c85741-9267-41c6-aacd-8deb939912ba" ], "request-id": [ - "5f990264-8dc6-4289-9e6c-e805b418a8f0" + "d2c85741-9267-41c6-aacd-8deb939912ba" ], "elapsed-time": [ - "727" + "1303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1193" ], "x-ms-correlation-request-id": [ - "b86feafe-0013-4284-a57b-475513de1720" + "afe5df39-22b5-4afb-a4c5-b8d6ee6b7cf7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221100Z:b86feafe-0013-4284-a57b-475513de1720" + "NORTHEUROPE:20190808T174723Z:afe5df39-22b5-4afb-a4c5-b8d6ee6b7cf7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:22 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696/providers/Microsoft.Search/searchServices/azs-5507\",\r\n \"name\": \"azs-5507\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768/providers/Microsoft.Search/searchServices/azs-9953\",\r\n \"name\": \"azs-9953\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696/providers/Microsoft.Search/searchServices/azs-5507/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTA3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768/providers/Microsoft.Search/searchServices/azs-9953/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05OTUzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c5275a-f2ee-4026-baa9-d44cb02ad9ef" + "43f31126-08da-4eb4-8d00-32a2f9f68592" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:02 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b7c5275a-f2ee-4026-baa9-d44cb02ad9ef" + "43f31126-08da-4eb4-8d00-32a2f9f68592" ], "request-id": [ - "b7c5275a-f2ee-4026-baa9-d44cb02ad9ef" + "43f31126-08da-4eb4-8d00-32a2f9f68592" ], "elapsed-time": [ - "122" + "276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1193" ], "x-ms-correlation-request-id": [ - "04712683-e02a-4aaf-b2f4-ce2ada8f4927" + "c45f2164-ac4e-4c9c-b765-823d77e4479c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221103Z:04712683-e02a-4aaf-b2f4-ce2ada8f4927" + "NORTHEUROPE:20190808T174724Z:c45f2164-ac4e-4c9c-b765-823d77e4479c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:24 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"991327ACADC69ACF0D1B048D13AE931F\",\r\n \"secondaryKey\": \"7221E2CDE8109BF500D492644EA9FCFE\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"F1268830796DBC35B631E40CE8445C1F\",\r\n \"secondaryKey\": \"87553A6A807F7494A49C2A266F5994AE\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696/providers/Microsoft.Search/searchServices/azs-5507/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTA3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768/providers/Microsoft.Search/searchServices/azs-9953/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05OTUzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edba71fa-f263-41f9-88dc-ba0ed971e1d2" + "cfc19e6b-6243-4a3f-9608-a5498c886b08" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:03 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "edba71fa-f263-41f9-88dc-ba0ed971e1d2" + "cfc19e6b-6243-4a3f-9608-a5498c886b08" ], "request-id": [ - "edba71fa-f263-41f9-88dc-ba0ed971e1d2" + "cfc19e6b-6243-4a3f-9608-a5498c886b08" ], "elapsed-time": [ - "96" + "312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14995" ], "x-ms-correlation-request-id": [ - "59347471-34f5-4997-bb45-6b564e964e02" + "7d554c84-a747-428a-ba63-f4289695f111" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221103Z:59347471-34f5-4997-bb45-6b564e964e02" + "NORTHEUROPE:20190808T174725Z:7d554c84-a747-428a-ba63-f4289695f111" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:24 GMT" + ], "Content-Length": [ "82" ], @@ -336,32 +336,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"9C179CAE35923EE4AD2E650D9823C96A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BAD003C6037B524937B5BBF01942B755\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet4500')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDQ1MDAnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet1552')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1NTInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet4500\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1552\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "0813c0cc-4e1e-444c-8a74-5a7beb3a8e7d" + "3b24e762-9693-411f-9acb-5d71a8e231b7" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "991327ACADC69ACF0D1B048D13AE931F" + "F1268830796DBC35B631E40CE8445C1F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -374,23 +374,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:05 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D3E60967E\"" + "W/\"0x8D71C2879C8200A\"" ], "Location": [ - "https://azs-5507.search-dogfood.windows-int.net/skillsets('azsmnet4500')?api-version=2019-05-06" + "https://azs-9953.search-dogfood.windows-int.net/skillsets('azsmnet1552')?api-version=2019-05-06" ], "request-id": [ - "0813c0cc-4e1e-444c-8a74-5a7beb3a8e7d" + "3b24e762-9693-411f-9acb-5d71a8e231b7" ], "elapsed-time": [ - "155" + "138" ], "OData-Version": [ "4.0" @@ -401,33 +398,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "682" + "Date": [ + "Thu, 08 Aug 2019 17:47:26 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "682" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5507.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D3E60967E\\\"\",\r\n \"name\": \"azsmnet4500\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9953.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2879C8200A\\\"\",\r\n \"name\": \"azsmnet1552\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7696/providers/Microsoft.Search/searchServices/azs-5507?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTA3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5768/providers/Microsoft.Search/searchServices/azs-9953?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05OTUzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f600f9ba-13d6-4ab4-82bb-62f56089f0f0" + "1eb8c69a-7cd3-4052-af8d-8955d5cb6bce" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -437,41 +437,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:09 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f600f9ba-13d6-4ab4-82bb-62f56089f0f0" + "1eb8c69a-7cd3-4052-af8d-8955d5cb6bce" ], "request-id": [ - "f600f9ba-13d6-4ab4-82bb-62f56089f0f0" + "1eb8c69a-7cd3-4052-af8d-8955d5cb6bce" ], "elapsed-time": [ - "817" + "689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14956" + "14997" ], "x-ms-correlation-request-id": [ - "47f3f981-ed3e-4041-810b-06d1b7edde0a" + "9f9a1210-7d49-454d-9601-5c6833b1a533" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221109Z:47f3f981-ed3e-4041-810b-06d1b7edde0a" + "NORTHEUROPE:20190808T174728Z:9f9a1210-7d49-454d-9601-5c6833b1a533" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:47:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -480,11 +480,11 @@ ], "Names": { "GenerateName": [ - "azsmnet7696", - "azsmnet4500" + "azsmnet5768", + "azsmnet1552" ], "GenerateServiceName": [ - "azs-5507" + "azs-9953" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json index aed2e5143532..4b3e3e3d3020 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c908544-65f1-4c48-9bd7-7388f11cc050" + "c6cd63ec-ea78-42ab-ac17-21da499cb208" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:32 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1194" ], "x-ms-request-id": [ - "acb92fb9-b08c-4a3b-adcf-311d32ac568b" + "00a9a3be-9764-4c40-b7ab-28bb1c44679a" ], "x-ms-correlation-request-id": [ - "acb92fb9-b08c-4a3b-adcf-311d32ac568b" + "00a9a3be-9764-4c40-b7ab-28bb1c44679a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221132Z:acb92fb9-b08c-4a3b-adcf-311d32ac568b" + "NORTHEUROPE:20190808T174704Z:00a9a3be-9764-4c40-b7ab-28bb1c44679a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:03 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8821?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6301?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ab0720-214c-4287-8dca-d58287bcecb4" + "0857f47c-01f5-461f-92df-1953c0d5f6d1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:33 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1194" ], "x-ms-request-id": [ - "9450de6b-f685-420c-a85b-615ab46998b5" + "ec83cd7c-2559-4b04-b9b1-50c68db38cb3" ], "x-ms-correlation-request-id": [ - "9450de6b-f685-420c-a85b-615ab46998b5" + "ec83cd7c-2559-4b04-b9b1-50c68db38cb3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221133Z:9450de6b-f685-420c-a85b-615ab46998b5" + "NORTHEUROPE:20190808T174705Z:ec83cd7c-2559-4b04-b9b1-50c68db38cb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:04 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821\",\r\n \"name\": \"azsmnet8821\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301\",\r\n \"name\": \"azsmnet6301\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821/providers/Microsoft.Search/searchServices/azs-1617?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301/providers/Microsoft.Search/searchServices/azs-1345?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a527a0fe-e7fb-403c-b801-d5ee4f4e87c1" + "f7aa9b86-955c-44eb-8b43-ba79f26128f6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A11%3A36.171738Z'\"" + "W/\"datetime'2019-08-08T17%3A47%3A07.875388Z'\"" ], "x-ms-request-id": [ - "a527a0fe-e7fb-403c-b801-d5ee4f4e87c1" + "f7aa9b86-955c-44eb-8b43-ba79f26128f6" ], "request-id": [ - "a527a0fe-e7fb-403c-b801-d5ee4f4e87c1" + "f7aa9b86-955c-44eb-8b43-ba79f26128f6" ], "elapsed-time": [ - "1039" + "1205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1195" ], "x-ms-correlation-request-id": [ - "2aadb821-95f5-4d39-915e-ea2667d04f2e" + "2456d96c-43eb-414e-850f-0bfa1d3024b3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221136Z:2aadb821-95f5-4d39-915e-ea2667d04f2e" + "NORTHEUROPE:20190808T174708Z:2456d96c-43eb-414e-850f-0bfa1d3024b3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:08 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821/providers/Microsoft.Search/searchServices/azs-1617\",\r\n \"name\": \"azs-1617\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301/providers/Microsoft.Search/searchServices/azs-1345\",\r\n \"name\": \"azs-1345\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821/providers/Microsoft.Search/searchServices/azs-1617/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjE3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301/providers/Microsoft.Search/searchServices/azs-1345/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzQ1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ef4fcf-9cf1-445b-bfd7-279c2e8899d8" + "465cdcd9-e980-4b39-b91f-1c42d121785c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:39 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b0ef4fcf-9cf1-445b-bfd7-279c2e8899d8" + "465cdcd9-e980-4b39-b91f-1c42d121785c" ], "request-id": [ - "b0ef4fcf-9cf1-445b-bfd7-279c2e8899d8" + "465cdcd9-e980-4b39-b91f-1c42d121785c" ], "elapsed-time": [ - "124" + "146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1195" ], "x-ms-correlation-request-id": [ - "486d556a-d069-4879-b826-164b6769434e" + "052233f3-71b1-441f-8397-bbda5b1caebc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221139Z:486d556a-d069-4879-b826-164b6769434e" + "NORTHEUROPE:20190808T174709Z:052233f3-71b1-441f-8397-bbda5b1caebc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:09 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"32315DA9BA2229B10596738BF708014C\",\r\n \"secondaryKey\": \"24C73751A0EE6DA99DBD6107173A5121\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"4E22CFF978C72263067A861D51FE8088\",\r\n \"secondaryKey\": \"9ED2487478A1E583F93AA5E50D51AAF5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821/providers/Microsoft.Search/searchServices/azs-1617/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjE3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301/providers/Microsoft.Search/searchServices/azs-1345/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzQ1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fca1158-407b-4348-8eb3-82e05d5817a2" + "89289a98-9b57-4fa4-9148-3cca81736ec4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:39 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6fca1158-407b-4348-8eb3-82e05d5817a2" + "89289a98-9b57-4fa4-9148-3cca81736ec4" ], "request-id": [ - "6fca1158-407b-4348-8eb3-82e05d5817a2" + "89289a98-9b57-4fa4-9148-3cca81736ec4" ], "elapsed-time": [ - "247" + "100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14998" ], "x-ms-correlation-request-id": [ - "dc198047-cc93-4f2c-b164-fa0837a496c1" + "7b2a60b3-be88-4cad-a565-eb101c92cae8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221139Z:dc198047-cc93-4f2c-b164-fa0837a496c1" + "NORTHEUROPE:20190808T174710Z:7b2a60b3-be88-4cad-a565-eb101c92cae8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:09 GMT" + ], "Content-Length": [ "82" ], @@ -336,61 +336,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"521F651E095AEEEB9E7ADF64DEDC62A1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"1C88CAC9DF8EF7703C2276244B62C1D5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet5964')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU5NjQnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet777')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc3NycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5964\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet777\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c37050d6-22e0-40bf-84c7-6e27c0e962eb" + "941d705e-2e9f-4441-9e81-c09143a503db" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "32315DA9BA2229B10596738BF708014C" + "4E22CFF978C72263067A861D51FE8088" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "691" + "690" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D53618A47\"" + "W/\"0x8D71C2870BCDED5\"" ], "Location": [ - "https://azs-1617.search-dogfood.windows-int.net/skillsets('azsmnet5964')?api-version=2019-05-06" + "https://azs-1345.search-dogfood.windows-int.net/skillsets('azsmnet777')?api-version=2019-05-06" ], "request-id": [ - "c37050d6-22e0-40bf-84c7-6e27c0e962eb" + "941d705e-2e9f-4441-9e81-c09143a503db" ], "elapsed-time": [ - "159" + "78" ], "OData-Version": [ "4.0" @@ -401,68 +398,68 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "686" + "Date": [ + "Thu, 08 Aug 2019 17:47:10 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "685" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1617.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D53618A47\\\"\",\r\n \"name\": \"azsmnet5964\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1345.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2870BCDED5\\\"\",\r\n \"name\": \"azsmnet777\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/skillsets('azsmnet5964')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU5NjQnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet777')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc3NycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5964\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet777\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "fed76e91-5881-4e6d-b071-10400cb75097" + "dbdc5411-7bc8-440f-9365-9be0a6f7bd06" ], "Prefer": [ "return=representation" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "32315DA9BA2229B10596738BF708014C" + "4E22CFF978C72263067A861D51FE8088" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1279" + "1278" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:40 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5370F757\"" + "W/\"0x8D71C2870CE4821\"" ], "request-id": [ - "fed76e91-5881-4e6d-b071-10400cb75097" + "dbdc5411-7bc8-440f-9365-9be0a6f7bd06" ], "elapsed-time": [ - "68" + "62" ], "OData-Version": [ "4.0" @@ -473,33 +470,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1132" + "Date": [ + "Thu, 08 Aug 2019 17:47:11 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1131" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1617.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5370F757\\\"\",\r\n \"name\": \"azsmnet5964\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1345.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2870CE4821\\\"\",\r\n \"name\": \"azsmnet777\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8821/providers/Microsoft.Search/searchServices/azs-1617?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6301/providers/Microsoft.Search/searchServices/azs-1345?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09f19f9a-43d7-4c26-8a44-740824f31ff5" + "c0257e6c-6b8f-481d-95de-0bebfbf51a91" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -509,41 +509,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:43 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "09f19f9a-43d7-4c26-8a44-740824f31ff5" + "c0257e6c-6b8f-481d-95de-0bebfbf51a91" ], "request-id": [ - "09f19f9a-43d7-4c26-8a44-740824f31ff5" + "c0257e6c-6b8f-481d-95de-0bebfbf51a91" ], "elapsed-time": [ - "823" + "722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14946" + "14993" ], "x-ms-correlation-request-id": [ - "07a57af9-9140-4a75-b147-f89fe75cfeac" + "f7e8c9cd-09dc-4dfe-a3b2-34b9cd10a004" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221144Z:07a57af9-9140-4a75-b147-f89fe75cfeac" + "NORTHEUROPE:20190808T174714Z:f7e8c9cd-09dc-4dfe-a3b2-34b9cd10a004" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:47:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -552,11 +552,11 @@ ], "Names": { "GenerateName": [ - "azsmnet8821", - "azsmnet5964" + "azsmnet6301", + "azsmnet777" ], "GenerateServiceName": [ - "azs-1617" + "azs-1345" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionConditional.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionConditional.json new file mode 100644 index 000000000000..302ad759fc67 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionConditional.json @@ -0,0 +1,537 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7aaa7e9b-8ca8-4934-b53a-a8c907b63ff1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3b9b0d40-fa41-4375-a5a8-b29276bd12da" + ], + "x-ms-correlation-request-id": [ + "3b9b0d40-fa41-4375-a5a8-b29276bd12da" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174516Z:3b9b0d40-fa41-4375-a5a8-b29276bd12da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:16 GMT" + ], + "Content-Length": [ + "2230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"804f4a7a-7d6e-4df7-bf8c-e7f0106e16c2\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6317?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzE3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "326dca23-5f54-4137-bd37-44a48c80eede" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "829bdca3-d1b4-400a-a592-9e1cb3af73a7" + ], + "x-ms-correlation-request-id": [ + "829bdca3-d1b4-400a-a592-9e1cb3af73a7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174517Z:829bdca3-d1b4-400a-a592-9e1cb3af73a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:17 GMT" + ], + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317\",\r\n \"name\": \"azsmnet6317\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317/providers/Microsoft.Search/searchServices/azs-7991?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03OTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d8c4cb0-5593-410e-af9a-10607e9cd90c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-08-08T17%3A45%3A20.106312Z'\"" + ], + "x-ms-request-id": [ + "6d8c4cb0-5593-410e-af9a-10607e9cd90c" + ], + "request-id": [ + "6d8c4cb0-5593-410e-af9a-10607e9cd90c" + ], + "elapsed-time": [ + "1108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "aca43e90-95ec-4db0-a746-7d4c4286fabe" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174520Z:aca43e90-95ec-4db0-a746-7d4c4286fabe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:20 GMT" + ], + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317/providers/Microsoft.Search/searchServices/azs-7991\",\r\n \"name\": \"azs-7991\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317/providers/Microsoft.Search/searchServices/azs-7991/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03OTkxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36f2ba22-dc9c-48f9-ac91-bbbbf5853c2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "36f2ba22-dc9c-48f9-ac91-bbbbf5853c2a" + ], + "request-id": [ + "36f2ba22-dc9c-48f9-ac91-bbbbf5853c2a" + ], + "elapsed-time": [ + "169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "a3c73950-e89b-43a8-a3d8-30768a0193cf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174522Z:a3c73950-e89b-43a8-a3d8-30768a0193cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:21 GMT" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"373760C2621638935EC64F1708B7EF2A\",\r\n \"secondaryKey\": \"505D7B8075AB31D0C42F18DEE890F3EC\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317/providers/Microsoft.Search/searchServices/azs-7991/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03OTkxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f48747f2-6603-4238-bbe3-e59744acf1c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f48747f2-6603-4238-bbe3-e59744acf1c1" + ], + "request-id": [ + "f48747f2-6603-4238-bbe3-e59744acf1c1" + ], + "elapsed-time": [ + "179" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "c94073d5-2365-4898-a0db-8430e8859cb7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174522Z:c94073d5-2365-4898-a0db-8430e8859cb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:22 GMT" + ], + "Content-Length": [ + "82" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C2488E58509E3226C8A8EDF89DB36A4C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ConditionalSkill\",\r\n \"description\": \"Tested Conditional skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"condition\",\r\n \"source\": \"= $(/document/language) == null\"\r\n },\r\n {\r\n \"name\": \"whenTrue\",\r\n \"source\": \"= 'es'\"\r\n },\r\n {\r\n \"name\": \"whenFalse\",\r\n \"source\": \"= $(/document/language)\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "a869f463-12f3-4512-8b0d-496d879f728a" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "373760C2621638935EC64F1708B7EF2A" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "700" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C283114489F\"" + ], + "Location": [ + "https://azs-7991.search-dogfood.windows-int.net/skillsets('testskillset3')?api-version=2019-05-06" + ], + "request-id": [ + "a869f463-12f3-4512-8b0d-496d879f728a" + ], + "elapsed-time": [ + "711" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:24 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "691" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7991.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C283114489F\\\"\",\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ConditionalSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Conditional skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"condition\",\r\n \"source\": \"= $(/document/language) == null\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"whenTrue\",\r\n \"source\": \"= 'es'\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"whenFalse\",\r\n \"source\": \"= $(/document/language)\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset3')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MycpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "886ead0d-e642-4f3a-a6c0-30bad7c3a3ed" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "373760C2621638935EC64F1708B7EF2A" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "886ead0d-e642-4f3a-a6c0-30bad7c3a3ed" + ], + "elapsed-time": [ + "38" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:24 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6317/providers/Microsoft.Search/searchServices/azs-7991?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03OTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "646f0d52-5a54-42d7-932e-bc7c56d5fee3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "646f0d52-5a54-42d7-932e-bc7c56d5fee3" + ], + "request-id": [ + "646f0d52-5a54-42d7-932e-bc7c56d5fee3" + ], + "elapsed-time": [ + "851" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "33164316-355a-4408-810e-766973e2367f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174527Z:33164316-355a-4408-810e-766973e2367f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6317" + ], + "GenerateServiceName": [ + "azs-7991" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json index f8563053150e..e61a167ecb89 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc72791-4407-4f7c-9d77-6e36c185ba6f" + "077ceffb-10a4-407e-8b5d-4840597ec7af" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:14 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1198" ], "x-ms-request-id": [ - "24cbbbd6-def7-44c0-86ae-9a7b2d4035c5" + "cf3720f6-002c-4140-9d92-9d1dddba32fd" ], "x-ms-correlation-request-id": [ - "24cbbbd6-def7-44c0-86ae-9a7b2d4035c5" + "cf3720f6-002c-4140-9d92-9d1dddba32fd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221114Z:24cbbbd6-def7-44c0-86ae-9a7b2d4035c5" + "NORTHEUROPE:20190808T175118Z:cf3720f6-002c-4140-9d92-9d1dddba32fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:18 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7843?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3ODQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2007?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMDA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc915dbc-ae76-439a-b4f5-b756974ee56c" + "f90d165b-682d-49fd-872f-ec6da69d01b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:14 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1199" ], "x-ms-request-id": [ - "448cd8ae-8c9d-4523-ba51-65ccc64365b3" + "328c7c9e-cb5d-4170-b799-a70d0012e3ff" ], "x-ms-correlation-request-id": [ - "448cd8ae-8c9d-4523-ba51-65ccc64365b3" + "328c7c9e-cb5d-4170-b799-a70d0012e3ff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221115Z:448cd8ae-8c9d-4523-ba51-65ccc64365b3" + "NORTHEUROPE:20190808T175120Z:328c7c9e-cb5d-4170-b799-a70d0012e3ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:19 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843\",\r\n \"name\": \"azsmnet7843\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007\",\r\n \"name\": \"azsmnet2007\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843/providers/Microsoft.Search/searchServices/azs-2950?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007/providers/Microsoft.Search/searchServices/azs-3554?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTU0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "707cf506-c234-4040-9f65-f6bc559b1ed0" + "74d8a7af-c473-48cd-b732-9a11c571d285" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:18 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A11%3A18.2514973Z'\"" + "W/\"datetime'2019-08-08T17%3A51%3A22.2893882Z'\"" ], "x-ms-request-id": [ - "707cf506-c234-4040-9f65-f6bc559b1ed0" + "74d8a7af-c473-48cd-b732-9a11c571d285" ], "request-id": [ - "707cf506-c234-4040-9f65-f6bc559b1ed0" + "74d8a7af-c473-48cd-b732-9a11c571d285" ], "elapsed-time": [ - "1550" + "1294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1190" ], "x-ms-correlation-request-id": [ - "e2372ad5-7eaf-433a-9606-cdca5ff4afb6" + "f5ffea31-da67-48ee-a862-367ceca3b588" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221118Z:e2372ad5-7eaf-433a-9606-cdca5ff4afb6" + "NORTHEUROPE:20190808T175123Z:f5ffea31-da67-48ee-a862-367ceca3b588" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:22 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843/providers/Microsoft.Search/searchServices/azs-2950\",\r\n \"name\": \"azs-2950\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007/providers/Microsoft.Search/searchServices/azs-3554\",\r\n \"name\": \"azs-3554\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843/providers/Microsoft.Search/searchServices/azs-2950/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTUwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007/providers/Microsoft.Search/searchServices/azs-3554/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTU0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "543c389c-4895-43e3-9e29-431ba8971d6f" + "a9b9027c-c110-4b0f-9087-d8f87111ef0a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:20 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "543c389c-4895-43e3-9e29-431ba8971d6f" + "a9b9027c-c110-4b0f-9087-d8f87111ef0a" ], "request-id": [ - "543c389c-4895-43e3-9e29-431ba8971d6f" + "a9b9027c-c110-4b0f-9087-d8f87111ef0a" ], "elapsed-time": [ - "421" + "382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1190" ], "x-ms-correlation-request-id": [ - "bb3337e1-d0e7-432e-ade2-27c77e6f830f" + "9c02b739-c1de-49d7-88f0-d0fd7f850123" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221121Z:bb3337e1-d0e7-432e-ade2-27c77e6f830f" + "NORTHEUROPE:20190808T175124Z:9c02b739-c1de-49d7-88f0-d0fd7f850123" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:24 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"017AEA7290D4F1E5D5D590FA4ACD3F3F\",\r\n \"secondaryKey\": \"E9EF0F3F1212458B8C92C55FFC073490\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"9C81143D37812998EAD86A1C81150B3D\",\r\n \"secondaryKey\": \"CC6D80B66A4F994B59C8723B968B4E31\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843/providers/Microsoft.Search/searchServices/azs-2950/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTUwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007/providers/Microsoft.Search/searchServices/azs-3554/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTU0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4617e12-9c8d-4e96-8e67-1d2028b9e0c2" + "5b1cf6ba-211d-489a-aef7-5c91e6499b7e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:21 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4617e12-9c8d-4e96-8e67-1d2028b9e0c2" + "5b1cf6ba-211d-489a-aef7-5c91e6499b7e" ], "request-id": [ - "d4617e12-9c8d-4e96-8e67-1d2028b9e0c2" + "5b1cf6ba-211d-489a-aef7-5c91e6499b7e" ], "elapsed-time": [ - "395" + "174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "08b3bfcd-40ae-4f26-b4a2-71285ab6b972" + "24c69b45-b8b4-4acb-8671-7feeb1db34a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221122Z:08b3bfcd-40ae-4f26-b4a2-71285ab6b972" + "NORTHEUROPE:20190808T175125Z:24c69b45-b8b4-4acb-8671-7feeb1db34a9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:24 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"940AEC9601A1A24BC08D51E209A146A0\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3075EF48808A14B4CFFAA139792DBCAD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset2\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"visualFeatures\": [\r\n \"categories\",\r\n \"color\",\r\n \"description\",\r\n \"faces\",\r\n \"imageType\",\r\n \"tags\"\r\n ],\r\n \"details\": [\r\n \"celebrities\",\r\n \"landmarks\"\r\n ],\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mydescription/*/Tags/*\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "fc4e0d8e-e7d6-4b89-a9df-4b4763536248" + "1e8886e8-d1ab-46d2-99c8-b189c97868dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "017AEA7290D4F1E5D5D590FA4ACD3F3F" + "9C81143D37812998EAD86A1C81150B3D" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D4912C769\"" + "W/\"0x8D71C2908FA8C8F\"" ], "Location": [ - "https://azs-2950.search-dogfood.windows-int.net/skillsets('testskillset2')?api-version=2019-05-06" + "https://azs-3554.search-dogfood.windows-int.net/skillsets('testskillset2')?api-version=2019-05-06" ], "request-id": [ - "fc4e0d8e-e7d6-4b89-a9df-4b4763536248" + "1e8886e8-d1ab-46d2-99c8-b189c97868dc" ], "elapsed-time": [ - "240" + "158" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1111" + "Date": [ + "Thu, 08 Aug 2019 17:51:25 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1111" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2950.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D4912C769\\\"\",\r\n \"name\": \"testskillset2\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"visualFeatures\": [\r\n \"categories\",\r\n \"color\",\r\n \"description\",\r\n \"faces\",\r\n \"imageType\",\r\n \"tags\"\r\n ],\r\n \"details\": [\r\n \"celebrities\",\r\n \"landmarks\"\r\n ],\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mydescription/*/Tags/*\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3554.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2908FA8C8F\\\"\",\r\n \"name\": \"testskillset2\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"visualFeatures\": [\r\n \"categories\",\r\n \"color\",\r\n \"description\",\r\n \"faces\",\r\n \"imageType\",\r\n \"tags\"\r\n ],\r\n \"details\": [\r\n \"celebrities\",\r\n \"landmarks\"\r\n ],\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mydescription/*/Tags/*\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,40 +418,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "43edc58f-ba88-4074-a874-75950310a4d2" + "02b35750-ec61-41d0-91c3-b8025f1f0c8f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "017AEA7290D4F1E5D5D590FA4ACD3F3F" + "9C81143D37812998EAD86A1C81150B3D" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:23 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "43edc58f-ba88-4074-a874-75950310a4d2" + "02b35750-ec61-41d0-91c3-b8025f1f0c8f" ], "elapsed-time": [ - "142" + "71" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:25 GMT" + ], "Expires": [ "-1" ] @@ -460,19 +460,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7843/providers/Microsoft.Search/searchServices/azs-2950?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2007/providers/Microsoft.Search/searchServices/azs-3554?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTU0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c94f3f-2075-4a92-8a6f-cf27fd758341" + "09302538-00e3-4923-86b5-d07e776508ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -482,41 +482,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "42c94f3f-2075-4a92-8a6f-cf27fd758341" + "09302538-00e3-4923-86b5-d07e776508ea" ], "request-id": [ - "42c94f3f-2075-4a92-8a6f-cf27fd758341" + "09302538-00e3-4923-86b5-d07e776508ea" ], "elapsed-time": [ - "988" + "941" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14955" + "14987" ], "x-ms-correlation-request-id": [ - "e57cda23-2c38-4824-9122-a3e7be713637" + "dc71fc35-b8ac-42c1-9d34-d176f48528d3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221127Z:e57cda23-2c38-4824-9122-a3e7be713637" + "NORTHEUROPE:20190808T175129Z:dc71fc35-b8ac-42c1-9d34-d176f48528d3" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:51:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet7843" + "azsmnet2007" ], "GenerateServiceName": [ - "azs-2950" + "azs-3554" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json index ac620b385f80..1bbb658a2159 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fb103f9-d951-45e6-98ac-2024126db9ba" + "969b8894-685e-4c28-a803-a247c3ce34f5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:55 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1195" ], "x-ms-request-id": [ - "092543ec-735a-46c5-b01a-cf5315947e9e" + "64e7d492-4798-4ac2-9e0f-a4e5117c2cdf" ], "x-ms-correlation-request-id": [ - "092543ec-735a-46c5-b01a-cf5315947e9e" + "64e7d492-4798-4ac2-9e0f-a4e5117c2cdf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221455Z:092543ec-735a-46c5-b01a-cf5315947e9e" + "NORTHEUROPE:20190808T174648Z:64e7d492-4798-4ac2-9e0f-a4e5117c2cdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:47 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4901?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0OTAxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6507?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e687029b-400f-4498-818d-b804878aa280" + "63d36400-5651-4371-9577-f2c86108c82b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:55 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1195" ], "x-ms-request-id": [ - "9354dff1-f2f2-4105-9dcb-936ed799fec6" + "530c7dc0-8cbc-4f60-a605-e5eb24b88204" ], "x-ms-correlation-request-id": [ - "9354dff1-f2f2-4105-9dcb-936ed799fec6" + "530c7dc0-8cbc-4f60-a605-e5eb24b88204" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221456Z:9354dff1-f2f2-4105-9dcb-936ed799fec6" + "NORTHEUROPE:20190808T174648Z:530c7dc0-8cbc-4f60-a605-e5eb24b88204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:48 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901\",\r\n \"name\": \"azsmnet4901\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507\",\r\n \"name\": \"azsmnet6507\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901/providers/Microsoft.Search/searchServices/azs-3303?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzAzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507/providers/Microsoft.Search/searchServices/azs-4396?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Mzk2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eca5dae4-d642-4925-ae8a-e07aa1666efb" + "e553c386-f6b3-453d-abc1-cf8165610bc7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A14%3A58.8353037Z'\"" + "W/\"datetime'2019-08-08T17%3A46%3A51.6533389Z'\"" ], "x-ms-request-id": [ - "eca5dae4-d642-4925-ae8a-e07aa1666efb" + "e553c386-f6b3-453d-abc1-cf8165610bc7" ], "request-id": [ - "eca5dae4-d642-4925-ae8a-e07aa1666efb" + "e553c386-f6b3-453d-abc1-cf8165610bc7" ], "elapsed-time": [ - "1088" + "1119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1195" ], "x-ms-correlation-request-id": [ - "a8ba279e-4c85-4894-97f3-0c10d85096b9" + "ed2aa756-036a-41fd-8f2f-aad7a6423e75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221459Z:a8ba279e-4c85-4894-97f3-0c10d85096b9" + "NORTHEUROPE:20190808T174652Z:ed2aa756-036a-41fd-8f2f-aad7a6423e75" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:51 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901/providers/Microsoft.Search/searchServices/azs-3303\",\r\n \"name\": \"azs-3303\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507/providers/Microsoft.Search/searchServices/azs-4396\",\r\n \"name\": \"azs-4396\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901/providers/Microsoft.Search/searchServices/azs-3303/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzAzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507/providers/Microsoft.Search/searchServices/azs-4396/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Mzk2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d2712c3-e5dc-42d7-b3d8-9c638376f01f" + "511a64ae-f30b-4173-b990-f98c9c07cd8c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:03 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6d2712c3-e5dc-42d7-b3d8-9c638376f01f" + "511a64ae-f30b-4173-b990-f98c9c07cd8c" ], "request-id": [ - "6d2712c3-e5dc-42d7-b3d8-9c638376f01f" + "511a64ae-f30b-4173-b990-f98c9c07cd8c" ], "elapsed-time": [ - "111" + "157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1195" ], "x-ms-correlation-request-id": [ - "0cda4f0a-c8e8-4448-b683-63f7ccde9e1e" + "85d20d14-d9e7-4ad2-806e-06aada43c613" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221503Z:0cda4f0a-c8e8-4448-b683-63f7ccde9e1e" + "NORTHEUROPE:20190808T174653Z:85d20d14-d9e7-4ad2-806e-06aada43c613" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:53 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"49296DCB23DA4BAE9247AFEFEEC67D9B\",\r\n \"secondaryKey\": \"8E061B0644400CFF4A1F605986F0FD8E\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"14D0E8DADECD40D324DA721B5C56332B\",\r\n \"secondaryKey\": \"8F8917F8DFECA5E8BBD14DC81146A8AA\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901/providers/Microsoft.Search/searchServices/azs-3303/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzAzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507/providers/Microsoft.Search/searchServices/azs-4396/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Mzk2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b406b9f5-7005-4d15-ae95-54a25f65cfeb" + "de6fc00e-f179-4b05-b1dc-c6efe25ff716" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:03 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b406b9f5-7005-4d15-ae95-54a25f65cfeb" + "de6fc00e-f179-4b05-b1dc-c6efe25ff716" ], "request-id": [ - "b406b9f5-7005-4d15-ae95-54a25f65cfeb" + "de6fc00e-f179-4b05-b1dc-c6efe25ff716" ], "elapsed-time": [ - "101" + "138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14996" ], "x-ms-correlation-request-id": [ - "82d7dd09-a4ea-4f04-80c2-f38f75d9531b" + "9fca6b46-f0be-42ee-b157-c4eb3039144c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221504Z:82d7dd09-a4ea-4f04-80c2-f38f75d9531b" + "NORTHEUROPE:20190808T174654Z:9fca6b46-f0be-42ee-b157-c4eb3039144c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:54 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"48D5FC24E7A0A8C8A8F0968BBED99D29\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"9ABB74E5CF2D74D313A897A625C24DC3\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.LanguageDetectionSkill\",\r\n \"description\": \"Tested Language Detection skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"languageCode\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "bb841fc4-ee49-4dc7-b3bb-b79ea7f5ec55" + "15306f14-8e37-4041-b27f-d802852713d8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "49296DCB23DA4BAE9247AFEFEEC67D9B" + "14D0E8DADECD40D324DA721B5C56332B" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DCFA0AC2B\"" + "W/\"0x8D71C2867312B72\"" ], "Location": [ - "https://azs-3303.search-dogfood.windows-int.net/skillsets('testskillset3')?api-version=2019-05-06" + "https://azs-4396.search-dogfood.windows-int.net/skillsets('testskillset3')?api-version=2019-05-06" ], "request-id": [ - "bb841fc4-ee49-4dc7-b3bb-b79ea7f5ec55" + "15306f14-8e37-4041-b27f-d802852713d8" ], "elapsed-time": [ - "80" + "92" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "528" + "Date": [ + "Thu, 08 Aug 2019 17:46:55 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "528" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3303.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DCFA0AC2B\\\"\",\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.LanguageDetectionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Language Detection skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"languageCode\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4396.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2867312B72\\\"\",\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.LanguageDetectionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Language Detection skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"languageCode\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,40 +418,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c31c15e1-baf1-475d-8c5a-a6e24c2189de" + "85708b8e-7469-486e-8a63-532e72821ab2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "49296DCB23DA4BAE9247AFEFEEC67D9B" + "14D0E8DADECD40D324DA721B5C56332B" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:09 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "c31c15e1-baf1-475d-8c5a-a6e24c2189de" + "85708b8e-7469-486e-8a63-532e72821ab2" ], "elapsed-time": [ - "37" + "42" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:55 GMT" + ], "Expires": [ "-1" ] @@ -460,19 +460,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4901/providers/Microsoft.Search/searchServices/azs-3303?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzAzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6507/providers/Microsoft.Search/searchServices/azs-4396?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Mzk2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53c8b53-64fd-435b-88b6-160ce234b010" + "c7a53dfc-1eb9-4321-8265-d6eee23b579f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -482,41 +482,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e53c8b53-64fd-435b-88b6-160ce234b010" + "c7a53dfc-1eb9-4321-8265-d6eee23b579f" ], "request-id": [ - "e53c8b53-64fd-435b-88b6-160ce234b010" + "c7a53dfc-1eb9-4321-8265-d6eee23b579f" ], "elapsed-time": [ - "1030" + "896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14946" + "14995" ], "x-ms-correlation-request-id": [ - "1bcb0a12-0baa-4251-b61f-7dd87a4f1a2c" + "b6a871e5-816e-4e06-9bb3-5e9b3b64bef6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221513Z:1bcb0a12-0baa-4251-b61f-7dd87a4f1a2c" + "NORTHEUROPE:20190808T174658Z:b6a871e5-816e-4e06-9bb3-5e9b3b64bef6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:46:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet4901" + "azsmnet6507" ], "GenerateServiceName": [ - "azs-3303" + "azs-4396" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json index cfe89a87d8b8..5e8403fdc1ba 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54719767-f290-4c4a-90c0-c09be6cd8bf1" + "ae6eb073-5130-4c7b-8542-1ca2d8a67107" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1189" ], "x-ms-request-id": [ - "2f621671-0bc8-4055-b26d-b32591575f5b" + "41997493-a76e-43dc-8b1d-4925d15059ef" ], "x-ms-correlation-request-id": [ - "2f621671-0bc8-4055-b26d-b32591575f5b" + "41997493-a76e-43dc-8b1d-4925d15059ef" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221208Z:2f621671-0bc8-4055-b26d-b32591575f5b" + "NORTHEUROPE:20190808T175207Z:41997493-a76e-43dc-8b1d-4925d15059ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:06 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9617?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NjE3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8473?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NDczP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5f1cf4-5007-4eaa-a6ba-76c8707215d1" + "0a0fcd8b-7f90-4664-98bd-bb55ec6d4be4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:09 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1189" ], "x-ms-request-id": [ - "841efe18-55ec-4b92-96c0-f422f6669f5f" + "2a0bd5c2-6bd3-4c96-a07a-21b98c64e6e0" ], "x-ms-correlation-request-id": [ - "841efe18-55ec-4b92-96c0-f422f6669f5f" + "2a0bd5c2-6bd3-4c96-a07a-21b98c64e6e0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221209Z:841efe18-55ec-4b92-96c0-f422f6669f5f" + "NORTHEUROPE:20190808T175208Z:2a0bd5c2-6bd3-4c96-a07a-21b98c64e6e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:07 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617\",\r\n \"name\": \"azsmnet9617\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473\",\r\n \"name\": \"azsmnet8473\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617/providers/Microsoft.Search/searchServices/azs-7697?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473/providers/Microsoft.Search/searchServices/azs-9308?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7fddc139-dc3c-4db7-9c71-1d3ead375a5d" + "7caaf349-cba7-412a-9ea7-c851d2a09a90" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:11 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A12%3A11.9491635Z'\"" + "W/\"datetime'2019-08-08T17%3A52%3A10.4651705Z'\"" ], "x-ms-request-id": [ - "7fddc139-dc3c-4db7-9c71-1d3ead375a5d" + "7caaf349-cba7-412a-9ea7-c851d2a09a90" ], "request-id": [ - "7fddc139-dc3c-4db7-9c71-1d3ead375a5d" + "7caaf349-cba7-412a-9ea7-c851d2a09a90" ], "elapsed-time": [ - "1830" + "1123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1197" ], "x-ms-correlation-request-id": [ - "fa5a3972-043e-4e62-b2aa-9b834e0d2d64" + "d98b107e-ff47-42e2-94c5-23572a7158d2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221212Z:fa5a3972-043e-4e62-b2aa-9b834e0d2d64" + "NORTHEUROPE:20190808T175210Z:d98b107e-ff47-42e2-94c5-23572a7158d2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:10 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617/providers/Microsoft.Search/searchServices/azs-7697\",\r\n \"name\": \"azs-7697\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473/providers/Microsoft.Search/searchServices/azs-9308\",\r\n \"name\": \"azs-9308\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617/providers/Microsoft.Search/searchServices/azs-7697/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473/providers/Microsoft.Search/searchServices/azs-9308/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzA4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "790960a6-100d-4cf1-89aa-b1de6ab0fd4f" + "dd3bf7ed-52ae-4f12-92a8-e4140eaffe57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:18 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "790960a6-100d-4cf1-89aa-b1de6ab0fd4f" + "dd3bf7ed-52ae-4f12-92a8-e4140eaffe57" ], "request-id": [ - "790960a6-100d-4cf1-89aa-b1de6ab0fd4f" + "dd3bf7ed-52ae-4f12-92a8-e4140eaffe57" ], "elapsed-time": [ - "567" + "141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1196" ], "x-ms-correlation-request-id": [ - "4a3a5a0f-9cda-489f-a514-abe2e7089a2a" + "489cbfef-d2dd-4689-b73d-ab58964699b9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221218Z:4a3a5a0f-9cda-489f-a514-abe2e7089a2a" + "NORTHEUROPE:20190808T175212Z:489cbfef-d2dd-4689-b73d-ab58964699b9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:12 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"B5F59C80D910560BC4B67AF281D574E2\",\r\n \"secondaryKey\": \"7FADE43D820D87980616475A439BD30E\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"2F12DB05CB392AB906CA9D7C49071EB1\",\r\n \"secondaryKey\": \"7874C221CD2785A741FD108A7AB5451C\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617/providers/Microsoft.Search/searchServices/azs-7697/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473/providers/Microsoft.Search/searchServices/azs-9308/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzA4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9ba533-d358-4899-aa08-176bb6abe79c" + "78fb7e6b-0ba9-4f75-8cdf-ccca7b1fb93c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:18 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fb9ba533-d358-4899-aa08-176bb6abe79c" + "78fb7e6b-0ba9-4f75-8cdf-ccca7b1fb93c" ], "request-id": [ - "fb9ba533-d358-4899-aa08-176bb6abe79c" + "78fb7e6b-0ba9-4f75-8cdf-ccca7b1fb93c" ], "elapsed-time": [ - "419" + "88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14997" ], "x-ms-correlation-request-id": [ - "134d3c30-8237-488c-9045-acb20110ca22" + "501bc527-073a-42b1-a5e8-8a4cb3c16e60" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221218Z:134d3c30-8237-488c-9045-acb20110ca22" + "NORTHEUROPE:20190808T175212Z:501bc527-073a-42b1-a5e8-8a4cb3c16e60" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:12 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"17DD3025B97A84D7586143874FD2EE1C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"5447D9C9581C496ED7426E006B2A0404\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset4\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"insertPreTag\": \"__\",\r\n \"insertPostTag\": \"__e\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c72e9307-7f54-474b-95c5-9ab292e42799" + "67b45ddb-4dca-4921-8b9c-d27c3977d3aa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B5F59C80D910560BC4B67AF281D574E2" + "2F12DB05CB392AB906CA9D7C49071EB1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:19 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D6A96AFF6\"" + "W/\"0x8D71C292515E016\"" ], "Location": [ - "https://azs-7697.search-dogfood.windows-int.net/skillsets('testskillset4')?api-version=2019-05-06" + "https://azs-9308.search-dogfood.windows-int.net/skillsets('testskillset4')?api-version=2019-05-06" ], "request-id": [ - "c72e9307-7f54-474b-95c5-9ab292e42799" + "67b45ddb-4dca-4921-8b9c-d27c3977d3aa" ], "elapsed-time": [ - "97" + "69" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "717" + "Date": [ + "Thu, 08 Aug 2019 17:52:13 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "717" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7697.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D6A96AFF6\\\"\",\r\n \"name\": \"testskillset4\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"insertPreTag\": \"__\",\r\n \"insertPostTag\": \"__e\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9308.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C292515E016\\\"\",\r\n \"name\": \"testskillset4\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"insertPreTag\": \"__\",\r\n \"insertPostTag\": \"__e\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,40 +418,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7e73da12-eb22-430d-99ad-a531a95c040a" + "91242575-3f6f-4abc-94af-1aef9018b022" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B5F59C80D910560BC4B67AF281D574E2" + "2F12DB05CB392AB906CA9D7C49071EB1" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:19 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "7e73da12-eb22-430d-99ad-a531a95c040a" + "91242575-3f6f-4abc-94af-1aef9018b022" ], "elapsed-time": [ - "43" + "39" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:52:13 GMT" + ], "Expires": [ "-1" ] @@ -460,19 +460,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9617/providers/Microsoft.Search/searchServices/azs-7697?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjE3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8473/providers/Microsoft.Search/searchServices/azs-9308?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e4aa3a6-8322-4113-a3d5-c00f78b43255" + "de9182be-6f09-400e-adf1-c0a622ca7d6b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -482,41 +482,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0e4aa3a6-8322-4113-a3d5-c00f78b43255" + "de9182be-6f09-400e-adf1-c0a622ca7d6b" ], "request-id": [ - "0e4aa3a6-8322-4113-a3d5-c00f78b43255" + "de9182be-6f09-400e-adf1-c0a622ca7d6b" ], "elapsed-time": [ - "1202" + "2347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14946" + "14985" ], "x-ms-correlation-request-id": [ - "285a3d8a-aa18-4d8b-86a3-047fdd362bfa" + "5553dac0-d719-4fde-aa4c-20d165773e5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221223Z:285a3d8a-aa18-4d8b-86a3-047fdd362bfa" + "NORTHEUROPE:20190808T175220Z:5553dac0-d719-4fde-aa4c-20d165773e5d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:52:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet9617" + "azsmnet8473" ], "GenerateServiceName": [ - "azs-7697" + "azs-9308" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrEntity.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrEntity.json index a727e321d969..96b638d919d7 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrEntity.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrEntity.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "263171b8-3915-47b0-bc07-91a9b760e47a" + "04e86e85-c522-431b-9dbf-71473fa17f07" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:58 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1133" + "1190" ], "x-ms-request-id": [ - "8c8e53a9-085b-4e9a-b708-269c4aa3e765" + "81046365-58c0-4a8e-a002-4ca0c44d76fa" ], "x-ms-correlation-request-id": [ - "8c8e53a9-085b-4e9a-b708-269c4aa3e765" + "81046365-58c0-4a8e-a002-4ca0c44d76fa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221359Z:8c8e53a9-085b-4e9a-b708-269c4aa3e765" + "NORTHEUROPE:20190808T174902Z:81046365-58c0-4a8e-a002-4ca0c44d76fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:01 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4451?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDUxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4199?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MTk5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3dbc736f-e1d7-4603-a0f0-8606131440ac" + "8c75a885-3922-46e5-8167-bd822dfce5d6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:00 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1133" + "1190" ], "x-ms-request-id": [ - "3b13c1f1-e21a-41c2-adf1-9aae55531dcb" + "900c1956-8703-42fe-b6ff-ad479b2c9076" ], "x-ms-correlation-request-id": [ - "3b13c1f1-e21a-41c2-adf1-9aae55531dcb" + "900c1956-8703-42fe-b6ff-ad479b2c9076" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221400Z:3b13c1f1-e21a-41c2-adf1-9aae55531dcb" + "NORTHEUROPE:20190808T174902Z:900c1956-8703-42fe-b6ff-ad479b2c9076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:02 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451\",\r\n \"name\": \"azsmnet4451\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199\",\r\n \"name\": \"azsmnet4199\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451/providers/Microsoft.Search/searchServices/azs-3588?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199/providers/Microsoft.Search/searchServices/azs-7443?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9eb095ba-eab3-4fe2-a24a-3fb8ed925ea3" + "a2ea573b-ace1-4d30-a54d-039f72813429" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A14%3A03.9887717Z'\"" + "W/\"datetime'2019-08-08T17%3A49%3A04.9273394Z'\"" ], "x-ms-request-id": [ - "9eb095ba-eab3-4fe2-a24a-3fb8ed925ea3" + "a2ea573b-ace1-4d30-a54d-039f72813429" ], "request-id": [ - "9eb095ba-eab3-4fe2-a24a-3fb8ed925ea3" + "a2ea573b-ace1-4d30-a54d-039f72813429" ], "elapsed-time": [ - "1633" + "921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1194" ], "x-ms-correlation-request-id": [ - "ab5711de-1b47-49c3-b54a-95fa79f7c758" + "2ee1e90f-2ac3-4bda-b013-556fecaf3945" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221404Z:ab5711de-1b47-49c3-b54a-95fa79f7c758" + "NORTHEUROPE:20190808T174905Z:2ee1e90f-2ac3-4bda-b013-556fecaf3945" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:05 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451/providers/Microsoft.Search/searchServices/azs-3588\",\r\n \"name\": \"azs-3588\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199/providers/Microsoft.Search/searchServices/azs-7443\",\r\n \"name\": \"azs-7443\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451/providers/Microsoft.Search/searchServices/azs-3588/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTg4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199/providers/Microsoft.Search/searchServices/azs-7443/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecd06055-7687-44a7-8380-f917f1384272" + "7d7eaf1d-1a72-4cf2-8b91-c2906f955baf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ecd06055-7687-44a7-8380-f917f1384272" + "7d7eaf1d-1a72-4cf2-8b91-c2906f955baf" ], "request-id": [ - "ecd06055-7687-44a7-8380-f917f1384272" + "7d7eaf1d-1a72-4cf2-8b91-c2906f955baf" ], "elapsed-time": [ - "127" + "189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1194" ], "x-ms-correlation-request-id": [ - "f90934df-3dd7-458e-b197-0243ed506451" + "1988f730-dd6f-402d-bde4-ad6958748b47" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221407Z:f90934df-3dd7-458e-b197-0243ed506451" + "NORTHEUROPE:20190808T174907Z:1988f730-dd6f-402d-bde4-ad6958748b47" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:06 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"DAEFF2E909CB1DC034EF0A7CB2655EDF\",\r\n \"secondaryKey\": \"56CC9E94E69B328A3869ADF53D2D14FA\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"62462E4455F3878D2F9553660AAF9703\",\r\n \"secondaryKey\": \"09EB8BB9C4FAB9D3EB08B6E8235210C7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451/providers/Microsoft.Search/searchServices/azs-3588/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTg4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199/providers/Microsoft.Search/searchServices/azs-7443/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4054cda1-6173-49fd-a53d-ef6a5f88b777" + "32a2400f-5ad8-4c8e-99ef-0f0a01eeadfc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4054cda1-6173-49fd-a53d-ef6a5f88b777" + "32a2400f-5ad8-4c8e-99ef-0f0a01eeadfc" ], "request-id": [ - "4054cda1-6173-49fd-a53d-ef6a5f88b777" + "32a2400f-5ad8-4c8e-99ef-0f0a01eeadfc" ], "elapsed-time": [ - "108" + "168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14996" ], "x-ms-correlation-request-id": [ - "7145b4db-976a-4ee7-b9d6-9d4b55e27aa5" + "7541f91d-edf4-4961-9c20-1706e95ec5ae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221408Z:7145b4db-976a-4ee7-b9d6-9d4b55e27aa5" + "NORTHEUROPE:20190808T174907Z:7541f91d-edf4-4961-9c20-1706e95ec5ae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:07 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"26017E225C571B135F7BA7B0B561B06C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C6D68ACE0EEEC2239E8B49887571BAB2\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "c47b247c-f007-444d-a3cb-7dc8692ec28a" + "c033cd5a-6a4c-4ca0-8d53-187f28c05a9e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DAEFF2E909CB1DC034EF0A7CB2655EDF" + "62462E4455F3878D2F9553660AAF9703" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DABD905BD\"" + "W/\"0x8D71C28B6F495E7\"" ], "Location": [ - "https://azs-3588.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-7443.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "c47b247c-f007-444d-a3cb-7dc8692ec28a" + "c033cd5a-6a4c-4ca0-8d53-187f28c05a9e" ], "elapsed-time": [ - "89" + "252" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1061" + "Date": [ + "Thu, 08 Aug 2019 17:49:09 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1061" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3588.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DABD905BD\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7443.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28B6F495E7\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,19 +418,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"categories\": [\r\n \"location\",\r\n \"organization\",\r\n \"person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "f445ded8-0588-444a-a91e-e6a68b83253d" + "7afa9db4-0189-49a9-968e-44ff5ed44fe5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DAEFF2E909CB1DC034EF0A7CB2655EDF" + "62462E4455F3878D2F9553660AAF9703" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:09 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DABF2D591\"" + "W/\"0x8D71C28B721A431\"" ], "Location": [ - "https://azs-3588.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-7443.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "f445ded8-0588-444a-a91e-e6a68b83253d" + "7afa9db4-0189-49a9-968e-44ff5ed44fe5" ], "elapsed-time": [ - "51" + "107" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1100" + "Date": [ + "Thu, 08 Aug 2019 17:49:09 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1100" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3588.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DABF2D591\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [\r\n \"location\",\r\n \"organization\",\r\n \"person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7443.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28B721A431\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [\r\n \"location\",\r\n \"organization\",\r\n \"person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -490,40 +490,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c6e31733-a1a5-44ef-b952-321c68558982" + "73bc5933-68fd-442f-92ca-7a2d43989d69" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DAEFF2E909CB1DC034EF0A7CB2655EDF" + "62462E4455F3878D2F9553660AAF9703" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:09 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "c6e31733-a1a5-44ef-b952-321c68558982" + "73bc5933-68fd-442f-92ca-7a2d43989d69" ], "elapsed-time": [ - "50" + "82" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:09 GMT" + ], "Expires": [ "-1" ] @@ -538,40 +538,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4fbc1c9d-2245-415a-9a43-03bdc17f7844" + "e3a5e48e-6493-41e9-9a09-fbb16e159c2a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "DAEFF2E909CB1DC034EF0A7CB2655EDF" + "62462E4455F3878D2F9553660AAF9703" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:09 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "4fbc1c9d-2245-415a-9a43-03bdc17f7844" + "e3a5e48e-6493-41e9-9a09-fbb16e159c2a" ], "elapsed-time": [ - "45" + "58" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:09 GMT" + ], "Expires": [ "-1" ] @@ -580,19 +580,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4451/providers/Microsoft.Search/searchServices/azs-3588?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4199/providers/Microsoft.Search/searchServices/azs-7443?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbe67ce8-ed86-4997-aabc-00746f0effec" + "bdebe25c-2749-4888-8c90-00e1dc936816" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -602,41 +602,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bbe67ce8-ed86-4997-aabc-00746f0effec" + "bdebe25c-2749-4888-8c90-00e1dc936816" ], "request-id": [ - "bbe67ce8-ed86-4997-aabc-00746f0effec" + "bdebe25c-2749-4888-8c90-00e1dc936816" ], "elapsed-time": [ - "1044" + "727" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14940" + "14990" ], "x-ms-correlation-request-id": [ - "b53e5f79-f4b2-47bf-b121-a14c7a0659d1" + "3f778ba1-0f54-4929-9003-482f5715c6f6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221413Z:b53e5f79-f4b2-47bf-b121-a14c7a0659d1" + "NORTHEUROPE:20190808T174912Z:3f778ba1-0f54-4929-9003-482f5715c6f6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:49:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -645,10 +645,10 @@ ], "Names": { "GenerateName": [ - "azsmnet4451" + "azsmnet4199" ], "GenerateServiceName": [ - "azs-3588" + "azs-7443" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json index 1678c538055e..7b745539cf80 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f4c9cfb-52e1-4302-b497-dc2d029e39a8" + "38c7f206-269b-4799-a1e4-b6a06475a46a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:55 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1191" ], "x-ms-request-id": [ - "f1b8b12e-3896-49b3-9571-cbcfe3cd03f7" + "c1c15394-0ef6-4367-bac1-a3f9aa04273d" ], "x-ms-correlation-request-id": [ - "f1b8b12e-3896-49b3-9571-cbcfe3cd03f7" + "c1c15394-0ef6-4367-bac1-a3f9aa04273d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221555Z:f1b8b12e-3896-49b3-9571-cbcfe3cd03f7" + "NORTHEUROPE:20190808T174834Z:c1c15394-0ef6-4367-bac1-a3f9aa04273d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:33 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3350?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMzUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7421?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NDIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5558b98b-2945-455e-95df-ae89c2898772" + "45648574-a996-4235-be99-1b23d98d9a3b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:55 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1191" ], "x-ms-request-id": [ - "a2aff106-0824-4de7-b8e5-c56ec2590685" + "53b1d991-7601-426f-b2e2-b87175b16a87" ], "x-ms-correlation-request-id": [ - "a2aff106-0824-4de7-b8e5-c56ec2590685" + "53b1d991-7601-426f-b2e2-b87175b16a87" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221556Z:a2aff106-0824-4de7-b8e5-c56ec2590685" + "NORTHEUROPE:20190808T174834Z:53b1d991-7601-426f-b2e2-b87175b16a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:34 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350\",\r\n \"name\": \"azsmnet3350\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421\",\r\n \"name\": \"azsmnet7421\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350/providers/Microsoft.Search/searchServices/azs-6072?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421/providers/Microsoft.Search/searchServices/azs-7448?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7dcf9899-f06c-4b12-9282-613d990da2dc" + "2af0a2f2-04f8-4df3-857e-064dfd4ff56b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A15%3A59.1140383Z'\"" + "W/\"datetime'2019-08-08T17%3A48%3A37.482955Z'\"" ], "x-ms-request-id": [ - "7dcf9899-f06c-4b12-9282-613d990da2dc" + "2af0a2f2-04f8-4df3-857e-064dfd4ff56b" ], "request-id": [ - "7dcf9899-f06c-4b12-9282-613d990da2dc" + "2af0a2f2-04f8-4df3-857e-064dfd4ff56b" ], "elapsed-time": [ - "924" + "926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1191" ], "x-ms-correlation-request-id": [ - "6fc4322d-ee44-45a5-a6ca-e1cb1db1ce00" + "12465049-1d19-4b8e-acfb-3679e1ca8aae" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221559Z:6fc4322d-ee44-45a5-a6ca-e1cb1db1ce00" + "NORTHEUROPE:20190808T174837Z:12465049-1d19-4b8e-acfb-3679e1ca8aae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:37 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350/providers/Microsoft.Search/searchServices/azs-6072\",\r\n \"name\": \"azs-6072\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421/providers/Microsoft.Search/searchServices/azs-7448\",\r\n \"name\": \"azs-7448\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350/providers/Microsoft.Search/searchServices/azs-6072/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421/providers/Microsoft.Search/searchServices/azs-7448/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQ4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb3fa16d-6233-4254-8513-bb789bf7bea4" + "2044f6d9-9ffc-4464-a0be-402e520202c2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:02 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eb3fa16d-6233-4254-8513-bb789bf7bea4" + "2044f6d9-9ffc-4464-a0be-402e520202c2" ], "request-id": [ - "eb3fa16d-6233-4254-8513-bb789bf7bea4" + "2044f6d9-9ffc-4464-a0be-402e520202c2" ], "elapsed-time": [ - "99" + "170" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1191" ], "x-ms-correlation-request-id": [ - "6d013e56-3535-4cb0-9bde-7d8fbb89fd3f" + "887c1b8f-51c2-453f-b3b6-d3098134728d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221603Z:6d013e56-3535-4cb0-9bde-7d8fbb89fd3f" + "NORTHEUROPE:20190808T174839Z:887c1b8f-51c2-453f-b3b6-d3098134728d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:38 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"2B0A9FE4877D9CD53DB7737771A93199\",\r\n \"secondaryKey\": \"8B0927466129C3FB768950CEC4E70437\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"CEAA4EB91B0808A64F8F137E88D7287F\",\r\n \"secondaryKey\": \"748B83FFBD80E9CD3FB2EFB9871279D7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350/providers/Microsoft.Search/searchServices/azs-6072/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421/providers/Microsoft.Search/searchServices/azs-7448/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQ4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8df68c93-4902-463c-a0b0-42d79eb50e41" + "6bbb7241-8891-4b68-a936-eb3bd750600c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:02 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8df68c93-4902-463c-a0b0-42d79eb50e41" + "6bbb7241-8891-4b68-a936-eb3bd750600c" ], "request-id": [ - "8df68c93-4902-463c-a0b0-42d79eb50e41" + "6bbb7241-8891-4b68-a936-eb3bd750600c" ], "elapsed-time": [ - "165" + "249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "a162517c-f8f9-4980-8e2c-649ce1cce12f" + "c52c91e4-f5a1-4ab4-80c3-83ffae288bb1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221603Z:a162517c-f8f9-4980-8e2c-649ce1cce12f" + "NORTHEUROPE:20190808T174840Z:c52c91e4-f5a1-4ab4-80c3-83ffae288bb1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:39 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3FC43FE5AC2BB2601FDD6AE0ECB2AFFE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"5D9E4CE4B00128503738F94958B262FC\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"pt\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"pt-PT\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "d89dae1d-705e-48e3-a601-05e7c8ebd93f" + "22fa8eda-a672-4c75-b6d6-8a892f43613e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DF0A3FAE7\"" + "W/\"0x8D71C28A669589D\"" ], "Location": [ - "https://azs-6072.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" + "https://azs-7448.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" ], "request-id": [ - "d89dae1d-705e-48e3-a601-05e7c8ebd93f" + "22fa8eda-a672-4c75-b6d6-8a892f43613e" ], "elapsed-time": [ - "139" + "112" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "981" + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "981" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6072.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DF0A3FAE7\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"pt\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"pt-PT\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7448.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28A669589D\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"pt\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"pt-PT\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,19 +418,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "b9c82338-8ca6-4071-912c-83930c1d598f" + "52bf835c-81c0-4169-92c5-1f928510ad16" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DF0BB320C\"" + "W/\"0x8D71C28A6860F40\"" ], "Location": [ - "https://azs-6072.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" + "https://azs-7448.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" ], "request-id": [ - "b9c82338-8ca6-4071-912c-83930c1d598f" + "52bf835c-81c0-4169-92c5-1f928510ad16" ], "elapsed-time": [ - "47" + "48" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "978" + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "978" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6072.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DF0BB320C\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7448.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28A6860F40\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -490,19 +490,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "32b1e44d-9d8a-4129-b360-3e1af9200c2a" + "c9f55b1e-24d4-4ce6-a353-887d6c34c89a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -515,23 +515,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DF0D01EA7\"" + "W/\"0x8D71C28A69BBF61\"" ], "Location": [ - "https://azs-6072.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" + "https://azs-7448.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2019-05-06" ], "request-id": [ - "32b1e44d-9d8a-4129-b360-3e1af9200c2a" + "c9f55b1e-24d4-4ce6-a353-887d6c34c89a" ], "elapsed-time": [ - "45" + "44" ], "OData-Version": [ "4.0" @@ -542,17 +539,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "982" + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "982" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6072.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DF0D01EA7\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7448.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28A69BBF61\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -562,40 +562,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e41f3558-952c-400d-a116-0751ebe3cdb1" + "76c5bdaa-8b96-4bc3-9c46-83239d02f870" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "e41f3558-952c-400d-a116-0751ebe3cdb1" + "76c5bdaa-8b96-4bc3-9c46-83239d02f870" ], "elapsed-time": [ - "45" + "61" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" + ], "Expires": [ "-1" ] @@ -610,40 +610,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7972a2f0-09f6-4ad3-aa5c-5f219e564316" + "cff608ac-aa85-47e6-8ee7-6a675c722b4b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "7972a2f0-09f6-4ad3-aa5c-5f219e564316" + "cff608ac-aa85-47e6-8ee7-6a675c722b4b" ], "elapsed-time": [ - "42" + "48" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" + ], "Expires": [ "-1" ] @@ -658,40 +658,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2b280ccc-512e-46c1-9e99-1073aa94e5f7" + "c887940b-a5c4-4bbf-9d37-036c4859be19" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "2B0A9FE4877D9CD53DB7737771A93199" + "CEAA4EB91B0808A64F8F137E88D7287F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:04 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "2b280ccc-512e-46c1-9e99-1073aa94e5f7" + "c887940b-a5c4-4bbf-9d37-036c4859be19" ], "elapsed-time": [ - "43" + "55" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:41 GMT" + ], "Expires": [ "-1" ] @@ -700,19 +700,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3350/providers/Microsoft.Search/searchServices/azs-6072?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7421/providers/Microsoft.Search/searchServices/azs-7448?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03820d4b-c034-4842-bdc8-b587e10566c7" + "c90f0096-fc37-426c-ab9b-5d8475987fe4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -722,41 +722,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:07 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "03820d4b-c034-4842-bdc8-b587e10566c7" + "c90f0096-fc37-426c-ab9b-5d8475987fe4" ], "request-id": [ - "03820d4b-c034-4842-bdc8-b587e10566c7" + "c90f0096-fc37-426c-ab9b-5d8475987fe4" ], "elapsed-time": [ - "918" + "790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14943" + "14995" ], "x-ms-correlation-request-id": [ - "36cd678f-a483-40c5-9d82-0a230137b1ea" + "7ae2e0b3-3975-4c6b-acdf-0c8c5c6ed7e2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221608Z:36cd678f-a483-40c5-9d82-0a230137b1ea" + "NORTHEUROPE:20190808T174844Z:7ae2e0b3-3975-4c6b-acdf-0c8c5c6ed7e2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:48:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -765,10 +765,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3350" + "azsmnet7421" ], "GenerateServiceName": [ - "azs-6072" + "azs-7448" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json index 44355dbc9ab8..2d0fb8a6e9ee 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "332b6aa3-6975-4e9a-a6dc-3709fceae5f2" + "82109eab-a853-45ca-8891-2ef687c26989" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:34 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1189" ], "x-ms-request-id": [ - "21f4b784-a8ff-4ca0-ade5-b15482b8aabb" + "e91c4c37-f383-410a-a75d-8dc2480c91d8" ], "x-ms-correlation-request-id": [ - "21f4b784-a8ff-4ca0-ade5-b15482b8aabb" + "e91c4c37-f383-410a-a75d-8dc2480c91d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221434Z:21f4b784-a8ff-4ca0-ade5-b15482b8aabb" + "NORTHEUROPE:20190808T175152Z:e91c4c37-f383-410a-a75d-8dc2480c91d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:51 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2077?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMDc3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4765?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NzY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "178e31c1-1d36-4057-a191-5177abccaf69" + "e53f482b-5719-45aa-95ac-db14d2aab302" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:35 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1189" ], "x-ms-request-id": [ - "19dfb3bc-1ef2-4f44-b079-34db41fa3a2a" + "4ff49c55-b3ec-4d6e-b7d3-f1970c72572e" ], "x-ms-correlation-request-id": [ - "19dfb3bc-1ef2-4f44-b079-34db41fa3a2a" + "4ff49c55-b3ec-4d6e-b7d3-f1970c72572e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221435Z:19dfb3bc-1ef2-4f44-b079-34db41fa3a2a" + "NORTHEUROPE:20190808T175153Z:4ff49c55-b3ec-4d6e-b7d3-f1970c72572e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:53 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077\",\r\n \"name\": \"azsmnet2077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765\",\r\n \"name\": \"azsmnet4765\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077/providers/Microsoft.Search/searchServices/azs-8234?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765/providers/Microsoft.Search/searchServices/azs-8408?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "939d782c-dfe0-475f-a815-f2d28408b9ae" + "e7ec08ed-5da3-46b6-9089-31429e49fbf0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:38 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A14%3A38.7740891Z'\"" + "W/\"datetime'2019-08-08T17%3A51%3A56.4387526Z'\"" ], "x-ms-request-id": [ - "939d782c-dfe0-475f-a815-f2d28408b9ae" + "e7ec08ed-5da3-46b6-9089-31429e49fbf0" ], "request-id": [ - "939d782c-dfe0-475f-a815-f2d28408b9ae" + "e7ec08ed-5da3-46b6-9089-31429e49fbf0" ], "elapsed-time": [ - "1879" + "1029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1130" + "1198" ], "x-ms-correlation-request-id": [ - "9a1861fd-74c5-4e8c-baa5-57912e4be79b" + "cbb2572c-3020-46ff-bb53-4632eea08b9a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221439Z:9a1861fd-74c5-4e8c-baa5-57912e4be79b" + "NORTHEUROPE:20190808T175157Z:cbb2572c-3020-46ff-bb53-4632eea08b9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:56 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077/providers/Microsoft.Search/searchServices/azs-8234\",\r\n \"name\": \"azs-8234\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765/providers/Microsoft.Search/searchServices/azs-8408\",\r\n \"name\": \"azs-8408\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077/providers/Microsoft.Search/searchServices/azs-8234/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjM0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765/providers/Microsoft.Search/searchServices/azs-8408/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDA4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22a83799-3c2b-4547-b3d0-4d10a294dffd" + "77e45870-7e17-45c1-af1b-dcd678e94ce7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:41 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "22a83799-3c2b-4547-b3d0-4d10a294dffd" + "77e45870-7e17-45c1-af1b-dcd678e94ce7" ], "request-id": [ - "22a83799-3c2b-4547-b3d0-4d10a294dffd" + "77e45870-7e17-45c1-af1b-dcd678e94ce7" ], "elapsed-time": [ - "108" + "156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1130" + "1197" ], "x-ms-correlation-request-id": [ - "97c5a542-4a03-4505-bfc9-1470964134f0" + "015948f4-bf72-4104-8b97-a7ca14ff447b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221441Z:97c5a542-4a03-4505-bfc9-1470964134f0" + "NORTHEUROPE:20190808T175158Z:015948f4-bf72-4104-8b97-a7ca14ff447b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:58 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"58E80D386240BAABE320941C7E052997\",\r\n \"secondaryKey\": \"99398E3507370E72B18A46E379C4F1E6\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"6B3D6C44642FAF958C1895BDA52AB886\",\r\n \"secondaryKey\": \"D1FFC9130D3BF7F70741AAE667FB7DAF\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077/providers/Microsoft.Search/searchServices/azs-8234/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjM0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765/providers/Microsoft.Search/searchServices/azs-8408/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDA4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a8b408c-6aa6-44d0-8b2f-be4fcdb5c17e" + "2b75f33b-488d-4d37-96d6-5cba9e0b1f4e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:41 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5a8b408c-6aa6-44d0-8b2f-be4fcdb5c17e" + "2b75f33b-488d-4d37-96d6-5cba9e0b1f4e" ], "request-id": [ - "5a8b408c-6aa6-44d0-8b2f-be4fcdb5c17e" + "2b75f33b-488d-4d37-96d6-5cba9e0b1f4e" ], "elapsed-time": [ - "115" + "125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14998" ], "x-ms-correlation-request-id": [ - "5f738183-c57a-446b-b42b-baf69915e9c9" + "b4410aef-8272-42e7-8ff4-c95456488f37" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221442Z:5f738183-c57a-446b-b42b-baf69915e9c9" + "NORTHEUROPE:20190808T175158Z:b4410aef-8272-42e7-8ff4-c95456488f37" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:58 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2A1E12C6D42D10F5BA28079AFA8F305D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C784616F9725DBEA5FB1F876324F8B17\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "d327c039-82e6-476f-b100-66e5f3c35c6a" + "5a72bb76-6319-40c7-a468-beb3fc2e162f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DC0C75621\"" + "W/\"0x8D71C291CB0A3C5\"" ], "Location": [ - "https://azs-8234.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-8408.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "d327c039-82e6-476f-b100-66e5f3c35c6a" + "5a72bb76-6319-40c7-a468-beb3fc2e162f" ], "elapsed-time": [ - "94" + "118" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1019" + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1019" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8234.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DC0C75621\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8408.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C291CB0A3C5\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,19 +418,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "9493a7d4-7934-455a-9a53-52d351585ff9" + "526c18f7-6bdc-4243-bf3f-27d55478640c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DC0E40CD8\"" + "W/\"0x8D71C291CD39D81\"" ], "Location": [ - "https://azs-8234.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-8408.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "9493a7d4-7934-455a-9a53-52d351585ff9" + "526c18f7-6bdc-4243-bf3f-27d55478640c" ], "elapsed-time": [ - "49" + "72" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1019" + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1019" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8234.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DC0E40CD8\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8408.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C291CD39D81\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -490,19 +490,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "53388fa2-c584-470d-bbb0-d81e10e194fd" + "717909d9-43cb-4613-800a-b5391ba4c5bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -515,23 +515,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DC0FA806E\"" + "W/\"0x8D71C291CEC5B8C\"" ], "Location": [ - "https://azs-8234.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-8408.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "53388fa2-c584-470d-bbb0-d81e10e194fd" + "717909d9-43cb-4613-800a-b5391ba4c5bc" ], "elapsed-time": [ - "44" + "53" ], "OData-Version": [ "4.0" @@ -542,17 +539,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1019" + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1019" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8234.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DC0FA806E\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"es\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8408.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C291CEC5B8C\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"es\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -562,40 +562,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2807203a-d605-4d23-89cc-eba5db562cf7" + "b6474837-62b9-4124-9ca9-c633163535d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "2807203a-d605-4d23-89cc-eba5db562cf7" + "b6474837-62b9-4124-9ca9-c633163535d0" ], "elapsed-time": [ - "50" + "69" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" + ], "Expires": [ "-1" ] @@ -610,40 +610,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cb85f661-150a-4ea5-bd8c-b6fb8aff3e03" + "74a8d6ed-07a2-4702-bc6a-7a3a9557828e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "cb85f661-150a-4ea5-bd8c-b6fb8aff3e03" + "74a8d6ed-07a2-4702-bc6a-7a3a9557828e" ], "elapsed-time": [ - "52" + "57" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" + ], "Expires": [ "-1" ] @@ -658,40 +658,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "04a58b0c-7d6d-42a1-833b-e2da8a216e0e" + "84ca1277-df1e-4d3a-9593-287da17fc329" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "58E80D386240BAABE320941C7E052997" + "6B3D6C44642FAF958C1895BDA52AB886" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:44 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "04a58b0c-7d6d-42a1-833b-e2da8a216e0e" + "84ca1277-df1e-4d3a-9593-287da17fc329" ], "elapsed-time": [ - "39" + "55" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:59 GMT" + ], "Expires": [ "-1" ] @@ -700,19 +700,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2077/providers/Microsoft.Search/searchServices/azs-8234?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MjM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4765/providers/Microsoft.Search/searchServices/azs-8408?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDA4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1dfd0c3-3ea2-474b-96dc-18bd3740473e" + "7898f1ae-e16e-45b4-8ac6-89a76a3145d2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -722,41 +722,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:48 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e1dfd0c3-3ea2-474b-96dc-18bd3740473e" + "7898f1ae-e16e-45b4-8ac6-89a76a3145d2" ], "request-id": [ - "e1dfd0c3-3ea2-474b-96dc-18bd3740473e" + "7898f1ae-e16e-45b4-8ac6-89a76a3145d2" ], "elapsed-time": [ - "1472" + "630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14935" + "14986" ], "x-ms-correlation-request-id": [ - "badd3aa5-ffec-44d5-be2b-481a652f20e1" + "06596a3a-ac74-4aa1-aa2f-8c01587a3ac7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221449Z:badd3aa5-ffec-44d5-be2b-481a652f20e1" + "NORTHEUROPE:20190808T175202Z:06596a3a-ac74-4aa1-aa2f-8c01587a3ac7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:52:02 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -765,10 +765,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2077" + "azsmnet4765" ], "GenerateServiceName": [ - "azs-8234" + "azs-8408" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json index 21ffa1c8f7bd..fbfc640faa51 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b204616-b812-482c-9e82-c41eb5de66b5" + "17f0bbd8-ae34-4059-924f-fb3458955801" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1193" ], "x-ms-request-id": [ - "e477f47b-75f7-4fd7-8c26-e7f50ec75a4c" + "4f77ca6b-5761-4923-90c9-f69a23852d69" ], "x-ms-correlation-request-id": [ - "e477f47b-75f7-4fd7-8c26-e7f50ec75a4c" + "4f77ca6b-5761-4923-90c9-f69a23852d69" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221327Z:e477f47b-75f7-4fd7-8c26-e7f50ec75a4c" + "NORTHEUROPE:20190808T174947Z:4f77ca6b-5761-4923-90c9-f69a23852d69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:47 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6788?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2Nzg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2698?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbc27449-fe8d-4654-b433-6f631db3044b" + "9840fbc3-404c-4d18-8c0f-1f44c3789c5e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:27 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1193" ], "x-ms-request-id": [ - "26b2fab8-ce32-4e9a-b775-3467d8c4765d" + "ec704a07-4229-4276-b21e-db98786af4d6" ], "x-ms-correlation-request-id": [ - "26b2fab8-ce32-4e9a-b775-3467d8c4765d" + "ec704a07-4229-4276-b21e-db98786af4d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221328Z:26b2fab8-ce32-4e9a-b775-3467d8c4765d" + "NORTHEUROPE:20190808T174948Z:ec704a07-4229-4276-b21e-db98786af4d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:47 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788\",\r\n \"name\": \"azsmnet6788\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698\",\r\n \"name\": \"azsmnet2698\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788/providers/Microsoft.Search/searchServices/azs-8745?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698/providers/Microsoft.Search/searchServices/azs-9345?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "70e836e8-f313-45dc-b5d1-1ecc311a8ec1" + "5df15d39-0839-4c83-855c-1da613da10ed" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:31 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A13%3A30.9251028Z'\"" + "W/\"datetime'2019-08-08T17%3A49%3A50.5642419Z'\"" ], "x-ms-request-id": [ - "70e836e8-f313-45dc-b5d1-1ecc311a8ec1" + "5df15d39-0839-4c83-855c-1da613da10ed" ], "request-id": [ - "70e836e8-f313-45dc-b5d1-1ecc311a8ec1" + "5df15d39-0839-4c83-855c-1da613da10ed" ], "elapsed-time": [ - "1355" + "979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1189" ], "x-ms-correlation-request-id": [ - "4f68e02a-e7fb-4440-b060-f9e99bb398d2" + "ffdd3e74-faef-4167-bd19-513a83bc42b8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221331Z:4f68e02a-e7fb-4440-b060-f9e99bb398d2" + "NORTHEUROPE:20190808T174951Z:ffdd3e74-faef-4167-bd19-513a83bc42b8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:51 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788/providers/Microsoft.Search/searchServices/azs-8745\",\r\n \"name\": \"azs-8745\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698/providers/Microsoft.Search/searchServices/azs-9345\",\r\n \"name\": \"azs-9345\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788/providers/Microsoft.Search/searchServices/azs-8745/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NzQ1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698/providers/Microsoft.Search/searchServices/azs-9345/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzQ1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e4fcf3a-9d2e-46d6-a1fd-f1e23c7410fb" + "e2b7370c-7a7e-45ad-aeeb-e320c44dad63" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4e4fcf3a-9d2e-46d6-a1fd-f1e23c7410fb" + "e2b7370c-7a7e-45ad-aeeb-e320c44dad63" ], "request-id": [ - "4e4fcf3a-9d2e-46d6-a1fd-f1e23c7410fb" + "e2b7370c-7a7e-45ad-aeeb-e320c44dad63" ], "elapsed-time": [ - "179" + "114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1199" ], "x-ms-correlation-request-id": [ - "adcecef8-906d-4883-8de3-f96fff60278e" + "45a0aad0-3823-4a3e-ba5e-3ecf9dd8d9f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221333Z:adcecef8-906d-4883-8de3-f96fff60278e" + "NORTHEUROPE:20190808T175044Z:45a0aad0-3823-4a3e-ba5e-3ecf9dd8d9f0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:50:44 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"0334CD90119A5F6EC35BD1C19E29E891\",\r\n \"secondaryKey\": \"2666142E4EE8E0F9BFE80C8A8BF1143F\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"A00C9793BC69BA60C36F18B90078CFD8\",\r\n \"secondaryKey\": \"AE56C8BB6C784BB75F4363DAEBF3254A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788/providers/Microsoft.Search/searchServices/azs-8745/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NzQ1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698/providers/Microsoft.Search/searchServices/azs-9345/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzQ1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0400c63f-15af-49c7-befe-26f89a8e6183" + "4eb84c8d-dee3-49de-9124-e72ed016f698" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0400c63f-15af-49c7-befe-26f89a8e6183" + "4eb84c8d-dee3-49de-9124-e72ed016f698" ], "request-id": [ - "0400c63f-15af-49c7-befe-26f89a8e6183" + "4eb84c8d-dee3-49de-9124-e72ed016f698" ], "elapsed-time": [ - "82" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14999" ], "x-ms-correlation-request-id": [ - "4be8084f-771a-4ae8-96a9-21065703da48" + "039825fc-4a09-47fc-a605-86eb6d638a8d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221334Z:4be8084f-771a-4ae8-96a9-21065703da48" + "NORTHEUROPE:20190808T175045Z:039825fc-4a09-47fc-a605-86eb6d638a8d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:50:44 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7B5B46B11D7226DE1618C783BEF11E7F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"67704F3236118F8338E3C8B1C0CD9C3C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "2f3ae0a5-f2f4-4f15-84bf-1026558a4f56" + "5f23d1e0-716d-41b7-9f6d-ea7051e84f52" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "0334CD90119A5F6EC35BD1C19E29E891" + "A00C9793BC69BA60C36F18B90078CFD8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:35 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D97B76248\"" + "W/\"0x8D71C28F13370EF\"" ], "Location": [ - "https://azs-8745.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-9345.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "2f3ae0a5-f2f4-4f15-84bf-1026558a4f56" + "5f23d1e0-716d-41b7-9f6d-ea7051e84f52" ], "elapsed-time": [ - "49" + "61" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "942" + "Date": [ + "Thu, 08 Aug 2019 17:50:46 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "942" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8745.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D97B76248\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9345.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28F13370EF\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,33 +418,30 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "247841df-9009-4326-961d-c320d9783034" + "49017013-2d57-4f3f-8eb4-46391b2c7c57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "0334CD90119A5F6EC35BD1C19E29E891" + "A00C9793BC69BA60C36F18B90078CFD8" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:35 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "247841df-9009-4326-961d-c320d9783034" + "49017013-2d57-4f3f-8eb4-46391b2c7c57" ], "elapsed-time": [ "42" @@ -452,6 +449,9 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:50:46 GMT" + ], "Expires": [ "-1" ] @@ -460,19 +460,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6788/providers/Microsoft.Search/searchServices/azs-8745?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2698/providers/Microsoft.Search/searchServices/azs-9345?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7b92e37-3d1b-4a7f-87f8-9f7501ec2b15" + "5d5a0c9c-3968-4231-9fbe-35ca55621a84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -482,41 +482,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:37 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a7b92e37-3d1b-4a7f-87f8-9f7501ec2b15" + "5d5a0c9c-3968-4231-9fbe-35ca55621a84" ], "request-id": [ - "a7b92e37-3d1b-4a7f-87f8-9f7501ec2b15" + "5d5a0c9c-3968-4231-9fbe-35ca55621a84" ], "elapsed-time": [ - "798" + "1300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14937" + "14999" ], "x-ms-correlation-request-id": [ - "0d130cfa-1955-491b-90a0-089dee71b0df" + "92523d36-4419-47e1-a77a-1f53f4469365" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221338Z:0d130cfa-1955-491b-90a0-089dee71b0df" + "NORTHEUROPE:20190808T175055Z:92523d36-4419-47e1-a77a-1f53f4469365" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:50:54 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6788" + "azsmnet2698" ], "GenerateServiceName": [ - "azs-8745" + "azs-9345" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json index f670ce7e280b..54a04eab046b 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f1c5a1a-6cea-4e47-956a-3f3ecee390e4" + "bcd90a6c-7a8f-4064-b79f-3219b2032386" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1192" ], "x-ms-request-id": [ - "0b7b01b8-8d5d-4582-97b8-2b3713860dd6" + "89797fe8-c23d-4ad8-8644-72bdf6675198" ], "x-ms-correlation-request-id": [ - "0b7b01b8-8d5d-4582-97b8-2b3713860dd6" + "89797fe8-c23d-4ad8-8644-72bdf6675198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221613Z:0b7b01b8-8d5d-4582-97b8-2b3713860dd6" + "NORTHEUROPE:20190808T174917Z:89797fe8-c23d-4ad8-8644-72bdf6675198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:16 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5679?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1Njc5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5146?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTQ2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1708f824-bc20-4d1e-abc8-6a3db15e9048" + "e50e9d72-af50-45a3-81b1-9288d17ae925" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:13 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1192" ], "x-ms-request-id": [ - "f1d78b01-09f4-42ce-a4e9-09787d4b3529" + "97a83ac5-a217-4a0a-976b-75288eb445d4" ], "x-ms-correlation-request-id": [ - "f1d78b01-09f4-42ce-a4e9-09787d4b3529" + "97a83ac5-a217-4a0a-976b-75288eb445d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221614Z:f1d78b01-09f4-42ce-a4e9-09787d4b3529" + "NORTHEUROPE:20190808T174918Z:97a83ac5-a217-4a0a-976b-75288eb445d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:17 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679\",\r\n \"name\": \"azsmnet5679\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146\",\r\n \"name\": \"azsmnet5146\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679/providers/Microsoft.Search/searchServices/azs-7334?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Njc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146/providers/Microsoft.Search/searchServices/azs-3872?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zODcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6b27b4-d33d-465a-945e-d41d533115cf" + "90b04f69-f3d1-4b42-afb0-0deaaa6e136e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:16 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A16%3A16.9441159Z'\"" + "W/\"datetime'2019-08-08T17%3A49%3A20.715065Z'\"" ], "x-ms-request-id": [ - "4a6b27b4-d33d-465a-945e-d41d533115cf" + "90b04f69-f3d1-4b42-afb0-0deaaa6e136e" ], "request-id": [ - "4a6b27b4-d33d-465a-945e-d41d533115cf" + "90b04f69-f3d1-4b42-afb0-0deaaa6e136e" ], "elapsed-time": [ - "1524" + "1259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1189" ], "x-ms-correlation-request-id": [ - "cc9b8521-1d73-4c01-8de5-899130d9e097" + "69aad9f8-b56a-42e7-9c46-29175cf8f6e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221617Z:cc9b8521-1d73-4c01-8de5-899130d9e097" + "NORTHEUROPE:20190808T174921Z:69aad9f8-b56a-42e7-9c46-29175cf8f6e7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:21 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679/providers/Microsoft.Search/searchServices/azs-7334\",\r\n \"name\": \"azs-7334\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146/providers/Microsoft.Search/searchServices/azs-3872\",\r\n \"name\": \"azs-3872\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679/providers/Microsoft.Search/searchServices/azs-7334/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Njc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzM0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146/providers/Microsoft.Search/searchServices/azs-3872/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zODcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3af069f0-c972-4dc8-ae6c-e6395ba25706" + "992329b9-2a58-4b8f-9139-f5e61974aba6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:19 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3af069f0-c972-4dc8-ae6c-e6395ba25706" + "992329b9-2a58-4b8f-9139-f5e61974aba6" ], "request-id": [ - "3af069f0-c972-4dc8-ae6c-e6395ba25706" + "992329b9-2a58-4b8f-9139-f5e61974aba6" ], "elapsed-time": [ - "440" + "201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1189" ], "x-ms-correlation-request-id": [ - "cf538f84-bddb-4b6e-8a71-64d2e74c4b46" + "954283ce-387a-49db-ad34-3efeb4e78fda" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221619Z:cf538f84-bddb-4b6e-8a71-64d2e74c4b46" + "NORTHEUROPE:20190808T174923Z:954283ce-387a-49db-ad34-3efeb4e78fda" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:22 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"F53C89CDA8D6FE587E2D0EBD36598549\",\r\n \"secondaryKey\": \"90FF9D3CE9AAD42FBD63344ABBAEDB68\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"EBEA17F636300CB24EE0A7649AB10CEA\",\r\n \"secondaryKey\": \"12431E1D44FC10D2CE61B64F26667C22\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679/providers/Microsoft.Search/searchServices/azs-7334/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Njc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzM0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146/providers/Microsoft.Search/searchServices/azs-3872/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zODcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfa2f739-413d-47c9-8721-ffcf60cedc63" + "cd83abc7-7763-45f2-b1ca-0daa10773c68" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:20 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cfa2f739-413d-47c9-8721-ffcf60cedc63" + "cd83abc7-7763-45f2-b1ca-0daa10773c68" ], "request-id": [ - "cfa2f739-413d-47c9-8721-ffcf60cedc63" + "cd83abc7-7763-45f2-b1ca-0daa10773c68" ], "elapsed-time": [ - "286" + "210" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14992" ], "x-ms-correlation-request-id": [ - "07372eaf-5382-4346-8af4-5d9a21b2f1e4" + "aaa45c6c-35bb-47a4-82f5-ed5a14841a03" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221620Z:07372eaf-5382-4346-8af4-5d9a21b2f1e4" + "NORTHEUROPE:20190808T174923Z:aaa45c6c-35bb-47a4-82f5-ed5a14841a03" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:23 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B048D751F77D02282201DEE1A0B93CB0\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"0741D6C5D6E780CA9972B2FDE6B8C65E\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "4d26d265-b5cc-4d62-961c-de1e233d786a" + "024ab7fa-5798-4728-bf1e-bd906d8a4b0a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:21 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DFAE52632\"" + "W/\"0x8D71C28C062CF67\"" ], "Location": [ - "https://azs-7334.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-3872.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "4d26d265-b5cc-4d62-961c-de1e233d786a" + "024ab7fa-5798-4728-bf1e-bd906d8a4b0a" ], "elapsed-time": [ - "111" + "126" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1022" + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1022" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7334.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DFAE52632\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3872.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28C062CF67\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,19 +418,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "baa6815c-8344-4659-b879-c6618aabbe14" + "3be50e21-fa18-4397-ac7e-fee5bb1c4ba9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DFB007D00\"" + "W/\"0x8D71C28C08070A8\"" ], "Location": [ - "https://azs-7334.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-3872.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "baa6815c-8344-4659-b879-c6618aabbe14" + "3be50e21-fa18-4397-ac7e-fee5bb1c4ba9" ], "elapsed-time": [ - "49" + "48" ], "OData-Version": [ "4.0" @@ -470,17 +467,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1022" + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1022" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7334.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DFB007D00\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3872.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28C08070A8\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -490,19 +490,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"textSplitMode\": \"sentences\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "659f03ac-c071-4f31-bc19-f0a96990fdff" + "ce69f135-8712-44cd-99a8-1d2248273c65" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -515,23 +515,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DFB147F0C\"" + "W/\"0x8D71C28C0938812\"" ], "Location": [ - "https://azs-7334.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-3872.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "659f03ac-c071-4f31-bc19-f0a96990fdff" + "ce69f135-8712-44cd-99a8-1d2248273c65" ], "elapsed-time": [ - "62" + "41" ], "OData-Version": [ "4.0" @@ -542,17 +539,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1026" + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1026" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7334.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DFB147F0C\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3872.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28C0938812\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -562,19 +562,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"textSplitMode\": \"sentences\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "91f799a1-2688-4e4f-ab27-59992bee14f6" + "0fd73e18-640d-4814-bcfc-e35e7f8ec484" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587,23 +587,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DFB2FD5DA\"" + "W/\"0x8D71C28C0AAE643\"" ], "Location": [ - "https://azs-7334.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-3872.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "91f799a1-2688-4e4f-ab27-59992bee14f6" + "0fd73e18-640d-4814-bcfc-e35e7f8ec484" ], "elapsed-time": [ - "44" + "47" ], "OData-Version": [ "4.0" @@ -614,17 +611,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "1026" + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "1026" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7334.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DFB2FD5DA\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"da\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3872.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28C0AAE643\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"da\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -634,40 +634,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "094ba2d4-1393-4fea-9c29-8502f8e7297a" + "06a62269-9d44-4504-b490-67ba02455dbb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:21 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "094ba2d4-1393-4fea-9c29-8502f8e7297a" + "06a62269-9d44-4504-b490-67ba02455dbb" ], "elapsed-time": [ - "53" + "57" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" + ], "Expires": [ "-1" ] @@ -682,40 +682,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "117cd89d-3656-4d60-9369-b9ff337fe086" + "ebdeb407-46ca-4ba4-a8ff-2772d1b9afc3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "117cd89d-3656-4d60-9369-b9ff337fe086" + "ebdeb407-46ca-4ba4-a8ff-2772d1b9afc3" ], "elapsed-time": [ - "41" + "34" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" + ], "Expires": [ "-1" ] @@ -730,40 +730,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9df09ea7-7e37-4d4c-afd6-1728f6dc9c3f" + "6107f51b-ed5d-42ef-883b-4c4d3b24e4e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "9df09ea7-7e37-4d4c-afd6-1728f6dc9c3f" + "6107f51b-ed5d-42ef-883b-4c4d3b24e4e0" ], "elapsed-time": [ - "69" + "55" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" + ], "Expires": [ "-1" ] @@ -778,40 +778,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1c9a6a78-bf8a-481d-8e5d-325cf8f540ef" + "416f5e65-4ae6-4be6-8341-9d62d0e401e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "F53C89CDA8D6FE587E2D0EBD36598549" + "EBEA17F636300CB24EE0A7649AB10CEA" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:22 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "1c9a6a78-bf8a-481d-8e5d-325cf8f540ef" + "416f5e65-4ae6-4be6-8341-9d62d0e401e0" ], "elapsed-time": [ - "61" + "33" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:49:24 GMT" + ], "Expires": [ "-1" ] @@ -820,19 +820,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5679/providers/Microsoft.Search/searchServices/azs-7334?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Njc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5146/providers/Microsoft.Search/searchServices/azs-3872?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zODcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95714fdd-e789-4686-a5da-139728030d77" + "867486fa-07db-4732-a27d-bfa1d3b89efe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -842,41 +842,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:16:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "95714fdd-e789-4686-a5da-139728030d77" + "867486fa-07db-4732-a27d-bfa1d3b89efe" ], "request-id": [ - "95714fdd-e789-4686-a5da-139728030d77" + "867486fa-07db-4732-a27d-bfa1d3b89efe" ], "elapsed-time": [ - "1246" + "585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14937" + "14988" ], "x-ms-correlation-request-id": [ - "99420ded-2692-42bd-8b71-a244a138fd69" + "6c4737fe-dd05-4992-a6aa-a6f9eb8fb2ef" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221626Z:99420ded-2692-42bd-8b71-a244a138fd69" + "NORTHEUROPE:20190808T174927Z:6c4737fe-dd05-4992-a6aa-a6f9eb8fb2ef" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:49:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -885,10 +885,10 @@ ], "Names": { "GenerateName": [ - "azsmnet5679" + "azsmnet5146" ], "GenerateServiceName": [ - "azs-7334" + "azs-3872" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json new file mode 100644 index 000000000000..4b13fd3f87f2 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json @@ -0,0 +1,537 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80027295-f45a-4e6f-b819-1b0286908fcc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "178061b5-6009-46a6-9bbe-b30c051383bb" + ], + "x-ms-correlation-request-id": [ + "178061b5-6009-46a6-9bbe-b30c051383bb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174548Z:178061b5-6009-46a6-9bbe-b30c051383bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:48 GMT" + ], + "Content-Length": [ + "2230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"804f4a7a-7d6e-4df7-bf8c-e7f0106e16c2\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6656?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NjU2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca3b9fb6-610d-480d-9267-d5cd80274a97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d5c0658a-5296-4281-b771-a7b4e64b79fd" + ], + "x-ms-correlation-request-id": [ + "d5c0658a-5296-4281-b771-a7b4e64b79fd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174550Z:d5c0658a-5296-4281-b771-a7b4e64b79fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:50 GMT" + ], + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656\",\r\n \"name\": \"azsmnet6656\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656/providers/Microsoft.Search/searchServices/azs-7743?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ddd6df0-3eba-42a9-850d-306ce7c5dc22" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-08-08T17%3A45%3A52.9507127Z'\"" + ], + "x-ms-request-id": [ + "8ddd6df0-3eba-42a9-850d-306ce7c5dc22" + ], + "request-id": [ + "8ddd6df0-3eba-42a9-850d-306ce7c5dc22" + ], + "elapsed-time": [ + "1034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "a842d8b0-2d0d-44b4-9db2-ad572b86fcf3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174553Z:a842d8b0-2d0d-44b4-9db2-ad572b86fcf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:53 GMT" + ], + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656/providers/Microsoft.Search/searchServices/azs-7743\",\r\n \"name\": \"azs-7743\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656/providers/Microsoft.Search/searchServices/azs-7743/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NzQzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9853117b-9b29-4463-926f-00c1ebe74dba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9853117b-9b29-4463-926f-00c1ebe74dba" + ], + "request-id": [ + "9853117b-9b29-4463-926f-00c1ebe74dba" + ], + "elapsed-time": [ + "175" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "cb037907-4887-4788-8eee-3fea14b57427" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174555Z:cb037907-4887-4788-8eee-3fea14b57427" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:54 GMT" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"98F4CB5861D800827D9C7E2087E0170E\",\r\n \"secondaryKey\": \"7F522C80FD01DD1C24421DFB171557F9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656/providers/Microsoft.Search/searchServices/azs-7743/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NzQzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d26fa69-a418-4c59-8f15-9ff33456ce29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d26fa69-a418-4c59-8f15-9ff33456ce29" + ], + "request-id": [ + "3d26fa69-a418-4c59-8f15-9ff33456ce29" + ], + "elapsed-time": [ + "154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "195c4bc9-2680-4675-aaf3-b510a39a4855" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174555Z:195c4bc9-2680-4675-aaf3-b510a39a4855" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:55 GMT" + ], + "Content-Length": [ + "82" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BD5D024AD3B4266DD139FF5509BBB445\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"doc\",\r\n \"sourceContext\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/content\"\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"source\": \"/document/normalized_images/*\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "d341d3a6-c9e7-4cc2-adaf-c5e865409b3b" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "98F4CB5861D800827D9C7E2087E0170E" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "740" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C28442C2545\"" + ], + "Location": [ + "https://azs-7743.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + ], + "request-id": [ + "d341d3a6-c9e7-4cc2-adaf-c5e865409b3b" + ], + "elapsed-time": [ + "75" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:56 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "655" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7743.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28442C2545\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"doc\",\r\n \"source\": null,\r\n \"sourceContext\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/content\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"source\": \"/document/normalized_images/*\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bcf5d60b-9dc4-4a75-91d5-bd3c48f280a3" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "98F4CB5861D800827D9C7E2087E0170E" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "bcf5d60b-9dc4-4a75-91d5-bd3c48f280a3" + ], + "elapsed-time": [ + "37" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:45:56 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6656/providers/Microsoft.Search/searchServices/azs-7743?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NzQzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d798c7a9-23c6-4cdf-8ee7-1eaa1ca7832b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d798c7a9-23c6-4cdf-8ee7-1eaa1ca7832b" + ], + "request-id": [ + "d798c7a9-23c6-4cdf-8ee7-1eaa1ca7832b" + ], + "elapsed-time": [ + "648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "2aa3b9cd-ddc9-44b7-870a-aef795cd6249" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174600Z:2aa3b9cd-ddc9-44b7-870a-aef795cd6249" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:46:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6656" + ], + "GenerateServiceName": [ + "azs-7743" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionTextTranslation.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionTextTranslation.json new file mode 100644 index 000000000000..66956d4d3563 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionTextTranslation.json @@ -0,0 +1,897 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ccce2f30-8cd1-42ff-aa2c-759a82bd8b87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "4f70ec3c-88a6-44e4-b080-19de0b57bd25" + ], + "x-ms-correlation-request-id": [ + "4f70ec3c-88a6-44e4-b080-19de0b57bd25" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174802Z:4f70ec3c-88a6-44e4-b080-19de0b57bd25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:02 GMT" + ], + "Content-Length": [ + "2230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"804f4a7a-7d6e-4df7-bf8c-e7f0106e16c2\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3155?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMTU1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7e7820d-9c3d-496d-8d21-fce98d865072" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "f4b3c8a3-aeb9-4a14-9053-f04099c5bc9e" + ], + "x-ms-correlation-request-id": [ + "f4b3c8a3-aeb9-4a14-9053-f04099c5bc9e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174803Z:f4b3c8a3-aeb9-4a14-9053-f04099c5bc9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:03 GMT" + ], + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155\",\r\n \"name\": \"azsmnet3155\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155/providers/Microsoft.Search/searchServices/azs-3230?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjMwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "726542b2-3bc2-41e9-a78e-05566dc76b04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-08-08T17%3A48%3A05.220987Z'\"" + ], + "x-ms-request-id": [ + "726542b2-3bc2-41e9-a78e-05566dc76b04" + ], + "request-id": [ + "726542b2-3bc2-41e9-a78e-05566dc76b04" + ], + "elapsed-time": [ + "1134" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "57c62080-8e23-43b9-a389-ac7bee046e3e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174805Z:57c62080-8e23-43b9-a389-ac7bee046e3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:05 GMT" + ], + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155/providers/Microsoft.Search/searchServices/azs-3230\",\r\n \"name\": \"azs-3230\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155/providers/Microsoft.Search/searchServices/azs-3230/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjMwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b689bbad-d456-4b09-893d-5bbd85679786" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b689bbad-d456-4b09-893d-5bbd85679786" + ], + "request-id": [ + "b689bbad-d456-4b09-893d-5bbd85679786" + ], + "elapsed-time": [ + "112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "e1ac41f9-ff95-458c-9ee5-e65097ef3d37" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174807Z:e1ac41f9-ff95-458c-9ee5-e65097ef3d37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:07 GMT" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"A2EECEC9773AF1CBC568ED3057F7331B\",\r\n \"secondaryKey\": \"832E100F097F848636CD62C3FC7687E4\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155/providers/Microsoft.Search/searchServices/azs-3230/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjMwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a7cd918-e872-465d-adbf-e59f7bbe230f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3a7cd918-e872-465d-adbf-e59f7bbe230f" + ], + "request-id": [ + "3a7cd918-e872-465d-adbf-e59f7bbe230f" + ], + "elapsed-time": [ + "88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "3b98096d-aa95-4897-8c99-4c8a0d5709a7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174808Z:3b98096d-aa95-4897-8c99-4c8a0d5709a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:07 GMT" + ], + "Content-Length": [ + "82" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"72C563647A7246FD70F80473FF6647FB\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "4dfdc4f4-3348-4882-bcd4-09f08753d0d8" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "704" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C2893923E15\"" + ], + "Location": [ + "https://azs-3230.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + ], + "request-id": [ + "4dfdc4f4-3348-4882-bcd4-09f08753d0d8" + ], + "elapsed-time": [ + "133" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "724" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3230.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2893923E15\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"name\": null,\r\n \"description\": null,\r\n \"context\": null,\r\n \"defaultFromLanguageCode\": null,\r\n \"defaultToLanguageCode\": \"es\",\r\n \"suggestedFrom\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"defaultFromLanguageCode\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "9abcbcfe-0ea8-416d-ab66-7b4ab34e9c71" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C2893ACF870\"" + ], + "Location": [ + "https://azs-3230.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + ], + "request-id": [ + "9abcbcfe-0ea8-416d-ab66-7b4ab34e9c71" + ], + "elapsed-time": [ + "43" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "724" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3230.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2893ACF870\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"name\": null,\r\n \"description\": null,\r\n \"context\": null,\r\n \"defaultFromLanguageCode\": \"en\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"suggestedFrom\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"suggestedFrom\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "c86853b2-56e4-4edb-be3f-959d4718f55d" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C2893C71667\"" + ], + "Location": [ + "https://azs-3230.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + ], + "request-id": [ + "c86853b2-56e4-4edb-be3f-959d4718f55d" + ], + "elapsed-time": [ + "48" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "724" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3230.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2893C71667\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"name\": null,\r\n \"description\": null,\r\n \"context\": null,\r\n \"defaultFromLanguageCode\": null,\r\n \"defaultToLanguageCode\": \"es\",\r\n \"suggestedFrom\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"defaultFromLanguageCode\": \"en\",\r\n \"suggestedFrom\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "3eecb7d1-e91c-4054-b16b-2db455bebf1f" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "774" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D71C2893DC2A19\"" + ], + "Location": [ + "https://azs-3230.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + ], + "request-id": [ + "3eecb7d1-e91c-4054-b16b-2db455bebf1f" + ], + "elapsed-time": [ + "49" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "724" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3230.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2893DC2A19\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.TranslationSkill\",\r\n \"name\": null,\r\n \"description\": null,\r\n \"context\": null,\r\n \"defaultFromLanguageCode\": \"en\",\r\n \"defaultToLanguageCode\": \"es\",\r\n \"suggestedFrom\": \"en\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"translatedText\",\r\n \"targetName\": \"translatedText\"\r\n },\r\n {\r\n \"name\": \"translatedFromLanguageCode\",\r\n \"targetName\": \"translatedFromLanguageCode\"\r\n },\r\n {\r\n \"name\": \"translatedToLanguageCode\",\r\n \"targetName\": \"translatedToLanguageCode\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e3fdf8c4-e303-4551-bc3f-6147a1fb1746" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "e3fdf8c4-e303-4551-bc3f-6147a1fb1746" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ed5d2f49-ef3e-45b2-a549-fcc73640f48e" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "ed5d2f49-ef3e-45b2-a549-fcc73640f48e" + ], + "elapsed-time": [ + "58" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "48a668f6-4633-4583-aa91-6872169e3dcc" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "48a668f6-4633-4583-aa91-6872169e3dcc" + ], + "elapsed-time": [ + "42" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d5674263-298e-4f70-a9fd-86fafed93e37" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "A2EECEC9773AF1CBC568ED3057F7331B" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "d5674263-298e-4f70-a9fd-86fafed93e37" + ], + "elapsed-time": [ + "45" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:09 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3155/providers/Microsoft.Search/searchServices/azs-3230?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjMwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50819d4f-870f-486b-b7d4-d67148bbd708" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50819d4f-870f-486b-b7d4-d67148bbd708" + ], + "request-id": [ + "50819d4f-870f-486b-b7d4-d67148bbd708" + ], + "elapsed-time": [ + "846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "ea6e8a99-21a4-4ec3-8f52-9fc2ffce6009" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T174813Z:ea6e8a99-21a4-4ec3-8f52-9fc2ffce6009" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:48:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet3155" + ], + "GenerateServiceName": [ + "azs-3230" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithHeaders.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithHeaders.json index 6823149124ab..09e463235983 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithHeaders.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithHeaders.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9213c2b3-936e-47df-af42-1522bc3182eb" + "0957d912-eb06-401b-abbf-c6461be8fe6c" ], "Accept-Language": [ "en-US" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "7d45dbc2-7585-4ab3-b288-d4e6a3665e47" + "9acd0abe-085b-4d1a-b020-fe7d2ca6047b" ], "x-ms-correlation-request-id": [ - "7d45dbc2-7585-4ab3-b288-d4e6a3665e47" + "9acd0abe-085b-4d1a-b020-fe7d2ca6047b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T180947Z:7d45dbc2-7585-4ab3-b288-d4e6a3665e47" + "NORTHEUROPE:20190808T174932Z:9acd0abe-085b-4d1a-b020-fe7d2ca6047b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:09:46 GMT" + "Thu, 08 Aug 2019 17:49:31 GMT" ], "Content-Length": [ "2230" @@ -61,13 +61,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2527?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTI3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet508?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MDg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "09e9c6b5-7249-4b19-bc2a-299dfc8867c4" + "693c56a9-2b06-4926-900c-42d1f205319e" ], "Accept-Language": [ "en-US" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "26eb8bce-b4d2-4558-9687-1fe3ec0d2c41" + "851d14d1-fc38-4a86-bb33-cfec821cf4bc" ], "x-ms-correlation-request-id": [ - "26eb8bce-b4d2-4558-9687-1fe3ec0d2c41" + "851d14d1-fc38-4a86-bb33-cfec821cf4bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T180950Z:26eb8bce-b4d2-4558-9687-1fe3ec0d2c41" + "NORTHEUROPE:20190808T174932Z:851d14d1-fc38-4a86-bb33-cfec821cf4bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:09:50 GMT" + "Thu, 08 Aug 2019 17:49:32 GMT" ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527\",\r\n \"name\": \"azsmnet2527\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508\",\r\n \"name\": \"azsmnet508\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527/providers/Microsoft.Search/searchServices/azs-3959?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zOTU5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508/providers/Microsoft.Search/searchServices/azs-3069?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMwNjk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5fa819bb-565b-4c72-baaf-78117f11e3f4" + "f74eb26c-9f79-4038-b18b-c62f740666d0" ], "Accept-Language": [ "en-US" @@ -159,37 +159,37 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-08-02T18%3A09%3A56.0192713Z'\"" + "W/\"datetime'2019-08-08T17%3A49%3A35.838304Z'\"" ], "x-ms-request-id": [ - "5fa819bb-565b-4c72-baaf-78117f11e3f4" + "f74eb26c-9f79-4038-b18b-c62f740666d0" ], "request-id": [ - "5fa819bb-565b-4c72-baaf-78117f11e3f4" + "f74eb26c-9f79-4038-b18b-c62f740666d0" ], "elapsed-time": [ - "3537" + "1207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "9e3912a4-072e-4027-9980-26b19feafa46" + "a963b492-bde7-443a-8b62-155a5536028c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T180956Z:9e3912a4-072e-4027-9980-26b19feafa46" + "NORTHEUROPE:20190808T174936Z:a963b492-bde7-443a-8b62-155a5536028c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:09:56 GMT" + "Thu, 08 Aug 2019 17:49:35 GMT" ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527/providers/Microsoft.Search/searchServices/azs-3959\",\r\n \"name\": \"azs-3959\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508/providers/Microsoft.Search/searchServices/azs-3069\",\r\n \"name\": \"azs-3069\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527/providers/Microsoft.Search/searchServices/azs-3959/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zOTU5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508/providers/Microsoft.Search/searchServices/azs-3069/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMwNjkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18d267ad-6002-4353-971a-f0af356cf0e5" + "65d7a4f4-3869-4938-bd83-5bb0e4d602fd" ], "Accept-Language": [ "en-US" @@ -231,31 +231,31 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "18d267ad-6002-4353-971a-f0af356cf0e5" + "65d7a4f4-3869-4938-bd83-5bb0e4d602fd" ], "request-id": [ - "18d267ad-6002-4353-971a-f0af356cf0e5" + "65d7a4f4-3869-4938-bd83-5bb0e4d602fd" ], "elapsed-time": [ - "163" + "278" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "bdc94148-03c7-47af-a1d1-abc2a370ea27" + "992ed76b-364c-4625-80b0-bc5881ac2e1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T180958Z:bdc94148-03c7-47af-a1d1-abc2a370ea27" + "NORTHEUROPE:20190808T174937Z:992ed76b-364c-4625-80b0-bc5881ac2e1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:09:57 GMT" + "Thu, 08 Aug 2019 17:49:37 GMT" ], "Content-Length": [ "99" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5D77864ED60F3042A8EACF0DF54C9C22\",\r\n \"secondaryKey\": \"BACF8EB5662F96DE4F5DC42AC03B5E0B\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"E2C9C37E42B5393FC2277DDA3794F22D\",\r\n \"secondaryKey\": \"A85709DC979FDB5DC72CFA3F882100F8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527/providers/Microsoft.Search/searchServices/azs-3959/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zOTU5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508/providers/Microsoft.Search/searchServices/azs-3069/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMwNjkvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d618234-aea1-498c-a08d-2258ebf67a0d" + "229ae443-cedf-4800-93d6-ce008d75773c" ], "Accept-Language": [ "en-US" @@ -300,13 +300,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6d618234-aea1-498c-a08d-2258ebf67a0d" + "229ae443-cedf-4800-93d6-ce008d75773c" ], "request-id": [ - "6d618234-aea1-498c-a08d-2258ebf67a0d" + "229ae443-cedf-4800-93d6-ce008d75773c" ], "elapsed-time": [ - "97" + "291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,16 +315,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "948ef8b2-d452-4721-a9f6-41ba748163ed" + "daeb2cd2-2bec-4028-8850-ad76ed00e161" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T180959Z:948ef8b2-d452-4721-a9f6-41ba748163ed" + "NORTHEUROPE:20190808T174938Z:daeb2cd2-2bec-4028-8850-ad76ed00e161" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:09:58 GMT" + "Thu, 08 Aug 2019 17:49:37 GMT" ], "Content-Length": [ "82" @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4BC3CC5CEB8C99544010F030826FCB0C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"47295CF0D1EBB1086FA916DCFF9AB9DE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,13 +346,13 @@ "RequestBody": "{\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpHeaders\": {\r\n \"x-ms-example\": \"example\"\r\n },\r\n \"httpMethod\": \"POST\",\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "b42e2896-1d2e-4322-90a0-0610ac5915af" + "47794f9c-b99b-4ea7-9b34-11a829138f01" ], "Accept-Language": [ "en-US" ], "api-key": [ - "5D77864ED60F3042A8EACF0DF54C9C22" + "E2C9C37E42B5393FC2277DDA3794F22D" ], "User-Agent": [ "FxVersion/4.6.27617.04", @@ -375,16 +375,16 @@ "no-cache" ], "ETag": [ - "W/\"0x8D71774A2493E08\"" + "W/\"0x8D71C28C90BB4AD\"" ], "Location": [ - "https://azs-3959.search-dogfood.windows-int.net/skillsets('webapiskillset')?api-version=2019-05-06" + "https://azs-3069.search-dogfood.windows-int.net/skillsets('webapiskillset')?api-version=2019-05-06" ], "request-id": [ - "b42e2896-1d2e-4322-90a0-0610ac5915af" + "47794f9c-b99b-4ea7-9b34-11a829138f01" ], "elapsed-time": [ - "117" + "104" ], "OData-Version": [ "4.0" @@ -396,7 +396,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Fri, 02 Aug 2019 18:09:59 GMT" + "Thu, 08 Aug 2019 17:49:38 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -408,7 +408,7 @@ "663" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3959.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71774A2493E08\\\"\",\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"name\": null,\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpMethod\": \"POST\",\r\n \"timeout\": null,\r\n \"batchSize\": null,\r\n \"degreeOfParallelism\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ],\r\n \"httpHeaders\": {\r\n \"x-ms-example\": \"example\"\r\n }\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3069.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C28C90BB4AD\\\"\",\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"name\": null,\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpMethod\": \"POST\",\r\n \"timeout\": null,\r\n \"batchSize\": null,\r\n \"degreeOfParallelism\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ],\r\n \"httpHeaders\": {\r\n \"x-ms-example\": \"example\"\r\n }\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,13 +418,13 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a94b0dd3-6dcc-42ab-a434-d5323955f655" + "1088235e-0919-43ac-b118-984b78c79cd1" ], "Accept-Language": [ "en-US" ], "api-key": [ - "5D77864ED60F3042A8EACF0DF54C9C22" + "E2C9C37E42B5393FC2277DDA3794F22D" ], "User-Agent": [ "FxVersion/4.6.27617.04", @@ -441,16 +441,16 @@ "no-cache" ], "request-id": [ - "a94b0dd3-6dcc-42ab-a434-d5323955f655" + "1088235e-0919-43ac-b118-984b78c79cd1" ], "elapsed-time": [ - "75" + "49" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], "Date": [ - "Fri, 02 Aug 2019 18:09:59 GMT" + "Thu, 08 Aug 2019 17:49:38 GMT" ], "Expires": [ "-1" @@ -460,13 +460,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2527/providers/Microsoft.Search/searchServices/azs-3959?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zOTU5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet508/providers/Microsoft.Search/searchServices/azs-3069?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMwNjk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3da23ab4-03ba-4bc5-9e7e-cbf06fbd1d68" + "f9c0daf5-60e8-4f1d-ae02-aab7e84887b7" ], "Accept-Language": [ "en-US" @@ -486,31 +486,31 @@ "no-cache" ], "x-ms-request-id": [ - "3da23ab4-03ba-4bc5-9e7e-cbf06fbd1d68" + "f9c0daf5-60e8-4f1d-ae02-aab7e84887b7" ], "request-id": [ - "3da23ab4-03ba-4bc5-9e7e-cbf06fbd1d68" + "f9c0daf5-60e8-4f1d-ae02-aab7e84887b7" ], "elapsed-time": [ - "1120" + "768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14989" ], "x-ms-correlation-request-id": [ - "76a03eb2-908a-47f8-939b-1baed6be9dda" + "1d921af7-e056-4891-8951-4f67bde44855" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181004Z:76a03eb2-908a-47f8-939b-1baed6be9dda" + "NORTHEUROPE:20190808T174942Z:1d921af7-e056-4891-8951-4f67bde44855" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:10:03 GMT" + "Thu, 08 Aug 2019 17:49:42 GMT" ], "Expires": [ "-1" @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2527" + "azsmnet508" ], "GenerateServiceName": [ - "azs-3959" + "azs-3069" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithoutHeaders.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithoutHeaders.json index 63a0171d544e..2a0b12c18346 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithoutHeaders.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWebApiSkillWithoutHeaders.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6af5eba5-bc3a-4d45-ab56-f89c1e944051" + "270d40fa-185a-41ac-92ca-6646dfee61fa" ], "Accept-Language": [ "en-US" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "3db3415d-a19a-4cc0-bd92-27c31868da71" + "481298a3-d43f-4112-ac3a-3866d92f6b87" ], "x-ms-correlation-request-id": [ - "3db3415d-a19a-4cc0-bd92-27c31868da71" + "481298a3-d43f-4112-ac3a-3866d92f6b87" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181108Z:3db3415d-a19a-4cc0-bd92-27c31868da71" + "NORTHEUROPE:20190808T174453Z:481298a3-d43f-4112-ac3a-3866d92f6b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:08 GMT" + "Thu, 08 Aug 2019 17:44:53 GMT" ], "Content-Length": [ "2230" @@ -61,13 +61,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3848?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzODQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet914?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f3cac2a-a040-48a1-b772-a299b453bff3" + "538fb28f-6478-48fe-b596-2dd18f376483" ], "Accept-Language": [ "en-US" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "647bde58-c9af-4172-99d0-e5b0f252b319" + "9337df64-5e4b-4b21-ae72-adbe0d568902" ], "x-ms-correlation-request-id": [ - "647bde58-c9af-4172-99d0-e5b0f252b319" + "9337df64-5e4b-4b21-ae72-adbe0d568902" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181109Z:647bde58-c9af-4172-99d0-e5b0f252b319" + "NORTHEUROPE:20190808T174455Z:9337df64-5e4b-4b21-ae72-adbe0d568902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:09 GMT" + "Thu, 08 Aug 2019 17:44:54 GMT" ], "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848\",\r\n \"name\": \"azsmnet3848\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914\",\r\n \"name\": \"azsmnet914\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848/providers/Microsoft.Search/searchServices/azs-3786?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914/providers/Microsoft.Search/searchServices/azs-3621?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2MjE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3fe5d72a-1d94-4ee2-b091-12b15936e878" + "421ce146-281b-4672-9cdf-d0285e619cfe" ], "Accept-Language": [ "en-US" @@ -159,37 +159,37 @@ "no-cache" ], "ETag": [ - "W/\"datetime'2019-08-02T18%3A11%3A13.9211382Z'\"" + "W/\"datetime'2019-08-08T17%3A45%3A00.5367766Z'\"" ], "x-ms-request-id": [ - "3fe5d72a-1d94-4ee2-b091-12b15936e878" + "421ce146-281b-4672-9cdf-d0285e619cfe" ], "request-id": [ - "3fe5d72a-1d94-4ee2-b091-12b15936e878" + "421ce146-281b-4672-9cdf-d0285e619cfe" ], "elapsed-time": [ - "2587" + "2977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "7daa1b80-0d4d-4602-96c0-fce931ced549" + "35a83fb0-12b9-4130-9ca5-d63ee89495aa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181115Z:7daa1b80-0d4d-4602-96c0-fce931ced549" + "NORTHEUROPE:20190808T174501Z:35a83fb0-12b9-4130-9ca5-d63ee89495aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:15 GMT" + "Thu, 08 Aug 2019 17:45:00 GMT" ], "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848/providers/Microsoft.Search/searchServices/azs-3786\",\r\n \"name\": \"azs-3786\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914/providers/Microsoft.Search/searchServices/azs-3621\",\r\n \"name\": \"azs-3621\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848/providers/Microsoft.Search/searchServices/azs-3786/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914/providers/Microsoft.Search/searchServices/azs-3621/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2MjEvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c39f8421-de96-4d86-829e-a78d30e0ca5d" + "d13db5e1-7144-476c-891e-d47485141842" ], "Accept-Language": [ "en-US" @@ -231,31 +231,31 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c39f8421-de96-4d86-829e-a78d30e0ca5d" + "d13db5e1-7144-476c-891e-d47485141842" ], "request-id": [ - "c39f8421-de96-4d86-829e-a78d30e0ca5d" + "d13db5e1-7144-476c-891e-d47485141842" ], "elapsed-time": [ - "428" + "136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "a78fb19c-d83a-4272-86e0-b5dfff52cdde" + "32c10415-4d04-4bf1-8eb3-a3a49427100b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181122Z:a78fb19c-d83a-4272-86e0-b5dfff52cdde" + "NORTHEUROPE:20190808T174502Z:32c10415-4d04-4bf1-8eb3-a3a49427100b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:22 GMT" + "Thu, 08 Aug 2019 17:45:01 GMT" ], "Content-Length": [ "99" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5CA77CE22AB2DBF2053E3695DE4A060C\",\r\n \"secondaryKey\": \"5F1F69710EED0AB5A7B3AF5D4DD16A39\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"D93EA3DB1A336DF980A5183B441764F6\",\r\n \"secondaryKey\": \"E3677CC4FD030E8596CFCC4515908B34\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848/providers/Microsoft.Search/searchServices/azs-3786/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914/providers/Microsoft.Search/searchServices/azs-3621/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2MjEvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "975bee14-c441-4078-983d-badd1273ef11" + "7492c61d-c43c-40fb-b581-a18dade02017" ], "Accept-Language": [ "en-US" @@ -300,13 +300,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "975bee14-c441-4078-983d-badd1273ef11" + "7492c61d-c43c-40fb-b581-a18dade02017" ], "request-id": [ - "975bee14-c441-4078-983d-badd1273ef11" + "7492c61d-c43c-40fb-b581-a18dade02017" ], "elapsed-time": [ - "612" + "92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,16 +315,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "6377e9fc-dc10-44e8-88ee-15c5b4bc7a45" + "e4a9d01d-3468-4ee2-baa5-16433104af1e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181123Z:6377e9fc-dc10-44e8-88ee-15c5b4bc7a45" + "NORTHEUROPE:20190808T174503Z:e4a9d01d-3468-4ee2-baa5-16433104af1e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:23 GMT" + "Thu, 08 Aug 2019 17:45:02 GMT" ], "Content-Length": [ "82" @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7B4A288D2D09176AC71449B034AF9134\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"76B1424014522414C80D8BF636D8CFF7\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,13 +346,13 @@ "RequestBody": "{\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpMethod\": \"POST\",\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "68ff7b89-2808-486b-93c7-e08fa8991f6e" + "493b137b-b9df-4b9f-ac9f-b01b5694eedb" ], "Accept-Language": [ "en-US" ], "api-key": [ - "5CA77CE22AB2DBF2053E3695DE4A060C" + "D93EA3DB1A336DF980A5183B441764F6" ], "User-Agent": [ "FxVersion/4.6.27617.04", @@ -375,16 +375,16 @@ "no-cache" ], "ETag": [ - "W/\"0x8D71774D47FDFF0\"" + "W/\"0x8D71C2825580EFD\"" ], "Location": [ - "https://azs-3786.search-dogfood.windows-int.net/skillsets('webapiskillset')?api-version=2019-05-06" + "https://azs-3621.search-dogfood.windows-int.net/skillsets('webapiskillset')?api-version=2019-05-06" ], "request-id": [ - "68ff7b89-2808-486b-93c7-e08fa8991f6e" + "493b137b-b9df-4b9f-ac9f-b01b5694eedb" ], "elapsed-time": [ - "75" + "170" ], "OData-Version": [ "4.0" @@ -396,7 +396,7 @@ "max-age=15724800; includeSubDomains" ], "Date": [ - "Fri, 02 Aug 2019 18:11:23 GMT" + "Thu, 08 Aug 2019 17:45:04 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -408,7 +408,7 @@ "641" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3786.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71774D47FDFF0\\\"\",\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"name\": null,\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpMethod\": \"POST\",\r\n \"timeout\": null,\r\n \"batchSize\": null,\r\n \"degreeOfParallelism\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ],\r\n \"httpHeaders\": null\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3621.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2825580EFD\\\"\",\r\n \"name\": \"webapiskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"name\": null,\r\n \"description\": \"A simple web api skill\",\r\n \"context\": \"/document\",\r\n \"uri\": \"https://contoso.example.org\",\r\n \"httpMethod\": \"POST\",\r\n \"timeout\": null,\r\n \"batchSize\": null,\r\n \"degreeOfParallelism\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"coolResult\",\r\n \"targetName\": \"myCoolResult\"\r\n }\r\n ],\r\n \"httpHeaders\": null\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { @@ -418,13 +418,13 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4e5e4f8a-a1eb-4adc-ad42-2bd3af133243" + "02d1b29d-71f3-4478-a798-c5739d7af51c" ], "Accept-Language": [ "en-US" ], "api-key": [ - "5CA77CE22AB2DBF2053E3695DE4A060C" + "D93EA3DB1A336DF980A5183B441764F6" ], "User-Agent": [ "FxVersion/4.6.27617.04", @@ -441,16 +441,16 @@ "no-cache" ], "request-id": [ - "4e5e4f8a-a1eb-4adc-ad42-2bd3af133243" + "02d1b29d-71f3-4478-a798-c5739d7af51c" ], "elapsed-time": [ - "72" + "58" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], "Date": [ - "Fri, 02 Aug 2019 18:11:24 GMT" + "Thu, 08 Aug 2019 17:45:04 GMT" ], "Expires": [ "-1" @@ -460,13 +460,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3848/providers/Microsoft.Search/searchServices/azs-3786?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet914/providers/Microsoft.Search/searchServices/azs-3621?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM2MjE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f54960-a6e4-4559-ada6-a1f5a37665ac" + "8b16cfb8-355c-4d7d-91c5-57e0fbb32d19" ], "Accept-Language": [ "en-US" @@ -486,31 +486,31 @@ "no-cache" ], "x-ms-request-id": [ - "83f54960-a6e4-4559-ada6-a1f5a37665ac" + "8b16cfb8-355c-4d7d-91c5-57e0fbb32d19" ], "request-id": [ - "83f54960-a6e4-4559-ada6-a1f5a37665ac" + "8b16cfb8-355c-4d7d-91c5-57e0fbb32d19" ], "elapsed-time": [ - "946" + "2906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "46662848-52a4-44b6-8839-24062789382e" + "ed475c30-bf9b-4edb-ad25-97070a5fc992" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190802T181128Z:46662848-52a4-44b6-8839-24062789382e" + "NORTHEUROPE:20190808T174510Z:ed475c30-bf9b-4edb-ad25-97070a5fc992" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 02 Aug 2019 18:11:28 GMT" + "Thu, 08 Aug 2019 17:45:09 GMT" ], "Expires": [ "-1" @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3848" + "azsmnet914" ], "GenerateServiceName": [ - "azs-3786" + "azs-3621" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json index 97cfb7b0086b..3be80eac0289 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa38d38f-69a0-42b7-88ee-7bacafb199a6" + "49b02c85-fa14-4e6f-a54e-a02a1296f886" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:37 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1132" + "1196" ], "x-ms-request-id": [ - "52db0cb7-588a-4089-bd63-3a858fe6aeab" + "e83d017a-3fbf-46c6-8311-77d6804e102b" ], "x-ms-correlation-request-id": [ - "52db0cb7-588a-4089-bd63-3a858fe6aeab" + "e83d017a-3fbf-46c6-8311-77d6804e102b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221538Z:52db0cb7-588a-4089-bd63-3a858fe6aeab" + "NORTHEUROPE:20190808T174633Z:e83d017a-3fbf-46c6-8311-77d6804e102b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:33 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8522?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9792?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47f27793-ef86-47f0-86e7-b9fe6e857746" + "66a3015c-e95f-4d0f-92bf-8094f2e99ec9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:39 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1132" + "1196" ], "x-ms-request-id": [ - "49fb1bba-bdb4-4c58-9ee1-db4cb8280da3" + "4b5e1b74-672c-4e50-876a-c314db945c52" ], "x-ms-correlation-request-id": [ - "49fb1bba-bdb4-4c58-9ee1-db4cb8280da3" + "4b5e1b74-672c-4e50-876a-c314db945c52" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221539Z:49fb1bba-bdb4-4c58-9ee1-db4cb8280da3" + "NORTHEUROPE:20190808T174634Z:4b5e1b74-672c-4e50-876a-c314db945c52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:33 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522\",\r\n \"name\": \"azsmnet8522\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792\",\r\n \"name\": \"azsmnet9792\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522/providers/Microsoft.Search/searchServices/azs-5848?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792/providers/Microsoft.Search/searchServices/azs-1513?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3d0612c0-4213-441b-b55d-74b50d2c45ba" + "2bc2b220-3471-4900-a56e-35b8b9016626" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:42 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A15%3A42.2598962Z'\"" + "W/\"datetime'2019-08-08T17%3A46%3A36.9534211Z'\"" ], "x-ms-request-id": [ - "3d0612c0-4213-441b-b55d-74b50d2c45ba" + "2bc2b220-3471-4900-a56e-35b8b9016626" ], "request-id": [ - "3d0612c0-4213-441b-b55d-74b50d2c45ba" + "2bc2b220-3471-4900-a56e-35b8b9016626" ], "elapsed-time": [ - "1279" + "1104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1196" ], "x-ms-correlation-request-id": [ - "c69afff5-1143-493b-8e8f-7a09212344d1" + "cc1e3235-735a-4a9d-880e-1320f53e321a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221542Z:c69afff5-1143-493b-8e8f-7a09212344d1" + "NORTHEUROPE:20190808T174637Z:cc1e3235-735a-4a9d-880e-1320f53e321a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:36 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522/providers/Microsoft.Search/searchServices/azs-5848\",\r\n \"name\": \"azs-5848\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792/providers/Microsoft.Search/searchServices/azs-1513\",\r\n \"name\": \"azs-1513\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522/providers/Microsoft.Search/searchServices/azs-5848/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODQ4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792/providers/Microsoft.Search/searchServices/azs-1513/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTEzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "019d8cba-eb9f-42e0-ab22-1922166f9491" + "6feef294-b97b-4a3c-bbb7-64322f4963fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:45 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "019d8cba-eb9f-42e0-ab22-1922166f9491" + "6feef294-b97b-4a3c-bbb7-64322f4963fb" ], "request-id": [ - "019d8cba-eb9f-42e0-ab22-1922166f9491" + "6feef294-b97b-4a3c-bbb7-64322f4963fb" ], "elapsed-time": [ - "178" + "431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1196" ], "x-ms-correlation-request-id": [ - "0b933e8d-ffec-4690-8412-5fa330082497" + "7ad08ba8-4e4e-4031-8a83-509e78a28dd0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221545Z:0b933e8d-ffec-4690-8412-5fa330082497" + "NORTHEUROPE:20190808T174639Z:7ad08ba8-4e4e-4031-8a83-509e78a28dd0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:38 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"E58A5651269304C626E287142A1518FC\",\r\n \"secondaryKey\": \"23BB2F4CF10744A5652622FFA11F23A4\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"576A4350A6AD709FC5C23FDE86C1E66F\",\r\n \"secondaryKey\": \"6CBC9195A082983D5DA1339C61F5EB3A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522/providers/Microsoft.Search/searchServices/azs-5848/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODQ4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792/providers/Microsoft.Search/searchServices/azs-1513/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTEzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7af44bfb-406b-446e-b3c7-0b58acb479ac" + "c16c2f1d-ab9f-457e-ae13-727614e67670" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:45 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7af44bfb-406b-446e-b3c7-0b58acb479ac" + "c16c2f1d-ab9f-457e-ae13-727614e67670" ], "request-id": [ - "7af44bfb-406b-446e-b3c7-0b58acb479ac" + "c16c2f1d-ab9f-457e-ae13-727614e67670" ], "elapsed-time": [ - "92" + "315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14997" ], "x-ms-correlation-request-id": [ - "2a3342e4-b87e-4f0c-9dd4-3db2f28c3eed" + "68118b50-3667-4cd9-833c-88349516ff2c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221545Z:2a3342e4-b87e-4f0c-9dd4-3db2f28c3eed" + "NORTHEUROPE:20190808T174640Z:68118b50-3667-4cd9-833c-88349516ff2c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:40 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"151F4936E0F27217D389DDF85C19DDFB\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E5FFE43E120986FEBE7AF2185D6859FE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,19 +346,19 @@ "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Search.DefaultCognitiveServices\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "e30c83e5-c245-448d-974e-1c66bcfe8b54" + "9c137c6d-64db-46c6-aee0-f67e595a2ae1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "E58A5651269304C626E287142A1518FC" + "576A4350A6AD709FC5C23FDE86C1E66F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DE60F1D17\"" + "W/\"0x8D71C285EB925E9\"" ], "Location": [ - "https://azs-5848.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" + "https://azs-1513.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2019-05-06" ], "request-id": [ - "e30c83e5-c245-448d-974e-1c66bcfe8b54" + "9c137c6d-64db-46c6-aee0-f67e595a2ae1" ], "elapsed-time": [ - "105" + "81" ], "OData-Version": [ "4.0" @@ -398,17 +395,20 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "758" + "Date": [ + "Thu, 08 Aug 2019 17:46:40 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "758" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5848.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DE60F1D17\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Search.DefaultCognitiveServices\",\r\n \"description\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1513.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C285EB925E9\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Search.DefaultCognitiveServices\",\r\n \"description\": null\r\n }\r\n}", "StatusCode": 201 }, { @@ -418,40 +418,40 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "794c2378-c803-4e7f-95e7-80ab3d3524e2" + "bf248b22-38c0-47f1-a468-726959331e57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "E58A5651269304C626E287142A1518FC" + "576A4350A6AD709FC5C23FDE86C1E66F" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:46 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "794c2378-c803-4e7f-95e7-80ab3d3524e2" + "bf248b22-38c0-47f1-a468-726959331e57" ], "elapsed-time": [ - "41" + "50" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:40 GMT" + ], "Expires": [ "-1" ] @@ -460,19 +460,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8522/providers/Microsoft.Search/searchServices/azs-5848?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9792/providers/Microsoft.Search/searchServices/azs-1513?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTEzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fc57a13-f7af-4b0c-90eb-6dde00076132" + "5f9a4e6f-37c9-4e3e-b29a-fca4d9e91009" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -482,41 +482,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:49 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7fc57a13-f7af-4b0c-90eb-6dde00076132" + "5f9a4e6f-37c9-4e3e-b29a-fca4d9e91009" ], "request-id": [ - "7fc57a13-f7af-4b0c-90eb-6dde00076132" + "5f9a4e6f-37c9-4e3e-b29a-fca4d9e91009" ], "elapsed-time": [ - "944" + "890" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14944" + "14998" ], "x-ms-correlation-request-id": [ - "9ba82731-4768-4b7d-b9f4-7396f3a90207" + "8ba62bc7-8471-417d-b73d-1e6bb612be75" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221549Z:9ba82731-4768-4b7d-b9f4-7396f3a90207" + "NORTHEUROPE:20190808T174643Z:8ba62bc7-8471-417d-b73d-1e6bb612be75" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:46:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -525,10 +525,10 @@ ], "Names": { "GenerateName": [ - "azsmnet8522" + "azsmnet9792" ], "GenerateServiceName": [ - "azs-5848" + "azs-1513" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json index 5daf361f4e20..38d246c7e6ac 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd173a29-12c2-424c-8efc-5968ec85d650" + "6405f5c6-68ec-4f2b-b654-a606f1738c75" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1188" ], "x-ms-request-id": [ - "157b139a-5288-4add-a4be-c518c0386bcd" + "18528b11-42a0-4979-8dae-ae4019ce2114" ], "x-ms-correlation-request-id": [ - "157b139a-5288-4add-a4be-c518c0386bcd" + "18528b11-42a0-4979-8dae-ae4019ce2114" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221151Z:157b139a-5288-4add-a4be-c518c0386bcd" + "NORTHEUROPE:20190808T175135Z:18528b11-42a0-4979-8dae-ae4019ce2114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:34 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4369?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MzY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1775?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNzc1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2a1984-cabc-49dc-80be-1fa5cb4fb2d8" + "66d92c16-5809-41e9-81ed-8db33cb2d8b6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1188" ], "x-ms-request-id": [ - "b4b1f418-2298-486c-bfbc-75e7c9140fae" + "55e0b29a-ce27-4027-89aa-80283a0e1efa" ], "x-ms-correlation-request-id": [ - "b4b1f418-2298-486c-bfbc-75e7c9140fae" + "55e0b29a-ce27-4027-89aa-80283a0e1efa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221152Z:b4b1f418-2298-486c-bfbc-75e7c9140fae" + "NORTHEUROPE:20190808T175135Z:55e0b29a-ce27-4027-89aa-80283a0e1efa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:35 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369\",\r\n \"name\": \"azsmnet4369\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775\",\r\n \"name\": \"azsmnet1775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369/providers/Microsoft.Search/searchServices/azs-5814?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODE0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775/providers/Microsoft.Search/searchServices/azs-165?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c83d6d-d44d-409c-b51d-12f795e6f8b3" + "56728c09-427a-4d5f-8c4e-b25fb1e2e9e2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:54 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A11%3A54.4202997Z'\"" + "W/\"datetime'2019-08-08T17%3A51%3A38.1922002Z'\"" ], "x-ms-request-id": [ - "b2c83d6d-d44d-409c-b51d-12f795e6f8b3" + "56728c09-427a-4d5f-8c4e-b25fb1e2e9e2" ], "request-id": [ - "b2c83d6d-d44d-409c-b51d-12f795e6f8b3" + "56728c09-427a-4d5f-8c4e-b25fb1e2e9e2" ], "elapsed-time": [ - "890" + "1156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1190" ], "x-ms-correlation-request-id": [ - "f034e253-7c48-4abf-87f8-f6f5d82e60b0" + "12de0aca-391c-4486-9bad-1830788ad90c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221154Z:f034e253-7c48-4abf-87f8-f6f5d82e60b0" + "NORTHEUROPE:20190808T175138Z:12de0aca-391c-4486-9bad-1830788ad90c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:37 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369/providers/Microsoft.Search/searchServices/azs-5814\",\r\n \"name\": \"azs-5814\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775/providers/Microsoft.Search/searchServices/azs-165\",\r\n \"name\": \"azs-165\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369/providers/Microsoft.Search/searchServices/azs-5814/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODE0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775/providers/Microsoft.Search/searchServices/azs-165/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjUvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7045aa70-6477-40cb-9606-dfe866b18707" + "828af73a-3ced-4192-a420-03d38de35562" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:56 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7045aa70-6477-40cb-9606-dfe866b18707" + "828af73a-3ced-4192-a420-03d38de35562" ], "request-id": [ - "7045aa70-6477-40cb-9606-dfe866b18707" + "828af73a-3ced-4192-a420-03d38de35562" ], "elapsed-time": [ - "145" + "261" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1190" ], "x-ms-correlation-request-id": [ - "6b4a7811-ce13-4629-90dd-74f4d403f62b" + "973edb0d-5027-4a7f-94c2-1a234456c2af" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221156Z:6b4a7811-ce13-4629-90dd-74f4d403f62b" + "NORTHEUROPE:20190808T175140Z:973edb0d-5027-4a7f-94c2-1a234456c2af" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:39 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"B37EC449EE541CF5BC7B13CBD12C5330\",\r\n \"secondaryKey\": \"123F4C28551270474A27C4C8E0B80FD3\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"7B562D56586DE48A5028E20D3A8A573A\",\r\n \"secondaryKey\": \"F6F1CDDD48E3789B6C61A261DB3625D5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369/providers/Microsoft.Search/searchServices/azs-5814/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODE0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775/providers/Microsoft.Search/searchServices/azs-165/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjUvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "defd698f-439a-41b8-bfc6-9923429d17e6" + "c511f9cc-34b6-440b-9a0c-d790e3d5a098" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:57 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "defd698f-439a-41b8-bfc6-9923429d17e6" + "c511f9cc-34b6-440b-9a0c-d790e3d5a098" ], "request-id": [ - "defd698f-439a-41b8-bfc6-9923429d17e6" + "c511f9cc-34b6-440b-9a0c-d790e3d5a098" ], "elapsed-time": [ - "137" + "163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14995" ], "x-ms-correlation-request-id": [ - "470f72c3-f7a9-4d71-ae85-dfc7f2a3179a" + "6c6ba66f-3250-4b04-b182-81338059a9e6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221157Z:470f72c3-f7a9-4d71-ae85-dfc7f2a3179a" + "NORTHEUROPE:20190808T175140Z:6c6ba66f-3250-4b04-b182-81338059a9e6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:40 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"9898F7E78EAF232419990396FE433118\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"92F10A1600389E5ED6B37A696D6B20FF\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet158\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1526\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "53edb4c8-3705-4f7d-a647-77185f870f5b" + "282a84cf-27a1-42a1-84b3-00414ee7c2bd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "587" + "588" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5DBA6201\"" + "W/\"0x8D71C29120494B2\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet158')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet1526')?api-version=2019-05-06" ], "request-id": [ - "53edb4c8-3705-4f7d-a647-77185f870f5b" + "282a84cf-27a1-42a1-84b3-00414ee7c2bd" ], "elapsed-time": [ - "75" + "47" ], "OData-Version": [ "4.0" @@ -398,39 +395,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "692" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "692" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5DBA6201\\\"\",\r\n \"name\": \"azsmnet158\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": null,\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C29120494B2\\\"\",\r\n \"name\": \"azsmnet1526\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": null,\r\n \"detectOrientation\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8032\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7478\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "615dcffc-cf0e-454b-978d-3ff5352bfb83" + "d709d609-8992-43d4-864f-ac88ff4516f5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -443,23 +443,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5DD56AA6\"" + "W/\"0x8D71C29121B5683\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet8032')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet7478')?api-version=2019-05-06" ], "request-id": [ - "615dcffc-cf0e-454b-978d-3ff5352bfb83" + "d709d609-8992-43d4-864f-ac88ff4516f5" ], "elapsed-time": [ - "71" + "47" ], "OData-Version": [ "4.0" @@ -470,39 +467,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "687" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "686" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5DD56AA6\\\"\",\r\n \"name\": \"azsmnet8032\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"visualFeatures\": [],\r\n \"details\": [],\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C29121B5683\\\"\",\r\n \"name\": \"azsmnet7478\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"visualFeatures\": [],\r\n \"details\": [],\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8283\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5909\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "22637b41-15ef-41c8-bbe8-ee6a88db22cc" + "439abca5-f16d-4d3d-8d48-aa3c4417c558" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -515,23 +515,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5DEF889F\"" + "W/\"0x8D71C29123154C9\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet8283')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet5909')?api-version=2019-05-06" ], "request-id": [ - "22637b41-15ef-41c8-bbe8-ee6a88db22cc" + "439abca5-f16d-4d3d-8d48-aa3c4417c558" ], "elapsed-time": [ - "80" + "41" ], "OData-Version": [ "4.0" @@ -542,39 +539,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "592" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "591" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5DEF889F\\\"\",\r\n \"name\": \"azsmnet8283\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C29123154C9\\\"\",\r\n \"name\": \"azsmnet5909\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"maxKeyPhraseCount\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9451\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5936\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "a4fc3fd1-3f93-4c0e-929e-0163a7067659" + "8996fbe4-f09d-46e5-9893-0209a4e540bb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -587,23 +587,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5E0AB855\"" + "W/\"0x8D71C291249C4AE\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet9451')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet5936')?api-version=2019-05-06" ], "request-id": [ - "a4fc3fd1-3f93-4c0e-929e-0163a7067659" + "8996fbe4-f09d-46e5-9893-0209a4e540bb" ], "elapsed-time": [ - "61" + "66" ], "OData-Version": [ "4.0" @@ -614,39 +611,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "736" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "735" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5E0AB855\\\"\",\r\n \"name\": \"azsmnet9451\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"insertPreTag\": null,\r\n \"insertPostTag\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C291249C4AE\\\"\",\r\n \"name\": \"azsmnet5936\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"insertPreTag\": null,\r\n \"insertPostTag\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1729\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1785\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "8e032033-b4b1-411d-b359-8d7bb39f025f" + "f5875013-446e-490c-88e7-e2acc7b48dca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -659,23 +659,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5E1F56C2\"" + "W/\"0x8D71C291273C4F2\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet1729')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet1785')?api-version=2019-05-06" ], "request-id": [ - "8e032033-b4b1-411d-b359-8d7bb39f025f" + "f5875013-446e-490c-88e7-e2acc7b48dca" ], "elapsed-time": [ - "63" + "180" ], "OData-Version": [ "4.0" @@ -686,39 +683,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "640" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "639" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5E1F56C2\\\"\",\r\n \"name\": \"azsmnet1729\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": null,\r\n \"minimumPrecision\": null,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C291273C4F2\\\"\",\r\n \"name\": \"azsmnet1785\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.EntityRecognitionSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"categories\": [],\r\n \"defaultLanguageCode\": null,\r\n \"minimumPrecision\": null,\r\n \"includeTypelessEntities\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4950\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5144\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "08653448-3e42-4d2d-bf52-b016bb08dfda" + "efd3c5b2-0329-4dcd-8589-72d1ee7a8bb6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,23 +731,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5E3A8687\"" + "W/\"0x8D71C29128BBF89\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet4950')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet5144')?api-version=2019-05-06" ], "request-id": [ - "08653448-3e42-4d2d-bf52-b016bb08dfda" + "efd3c5b2-0329-4dcd-8589-72d1ee7a8bb6" ], "elapsed-time": [ - "58" + "46" ], "OData-Version": [ "4.0" @@ -758,39 +755,42 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "550" + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "549" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5E3A8687\\\"\",\r\n \"name\": \"azsmnet4950\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C29128BBF89\\\"\",\r\n \"name\": \"azsmnet5144\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2502\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3667\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "48409c97-5738-4229-a638-f60c78856ded" + "a16d7b81-b396-47b4-8836-23a858d6c1db" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -803,23 +803,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D5E5519CA\"" + "W/\"0x8D71C2912A1488A\"" ], "Location": [ - "https://azs-5814.search-dogfood.windows-int.net/skillsets('azsmnet2502')?api-version=2019-05-06" + "https://azs-165.search-dogfood.windows-int.net/skillsets('azsmnet3667')?api-version=2019-05-06" ], "request-id": [ - "48409c97-5738-4229-a638-f60c78856ded" + "a16d7b81-b396-47b4-8836-23a858d6c1db" ], "elapsed-time": [ - "72" + "37" ], "OData-Version": [ "4.0" @@ -830,60 +827,63 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "595" + "Date": [ + "Thu, 08 Aug 2019 17:51:42 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "594" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D5E5519CA\\\"\",\r\n \"name\": \"azsmnet2502\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-165.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2912A1488A\\\"\",\r\n \"name\": \"azsmnet3667\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"defaultLanguageCode\": null,\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null,\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/skillsets('azsmnet158')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1OCcpP2FwaS12ZXJzaW9uPTIwMTktMDUtMDY=", + "RequestUri": "/skillsets('azsmnet1526')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1MjYnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe426eab-e298-42d9-929d-fe98bf3b7716" + "2f60ac12-6975-429e-b355-035879a6d218" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "fe426eab-e298-42d9-929d-fe98bf3b7716" + "2f60ac12-6975-429e-b355-035879a6d218" ], "elapsed-time": [ - "46" + "39" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" + ], "Expires": [ "-1" ] @@ -892,46 +892,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet8032')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDgwMzInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet7478')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0NzgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "69bdcf45-5934-42d0-91e0-b19c733ff07c" + "e9065d57-1585-43ba-af46-604e4652d7fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "69bdcf45-5934-42d0-91e0-b19c733ff07c" + "e9065d57-1585-43ba-af46-604e4652d7fc" ], "elapsed-time": [ - "59" + "41" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" + ], "Expires": [ "-1" ] @@ -940,46 +940,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet8283')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDgyODMnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet5909')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU5MDknKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6d8a1f0d-106c-4a6b-bce0-f727ca632c79" + "95f710da-734c-4dd6-a72c-f63a6becbb6a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "6d8a1f0d-106c-4a6b-bce0-f727ca632c79" + "95f710da-734c-4dd6-a72c-f63a6becbb6a" ], "elapsed-time": [ - "44" + "35" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" + ], "Expires": [ "-1" ] @@ -988,46 +988,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet9451')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDk0NTEnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet5936')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU5MzYnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "43f053f6-93e8-43cd-9457-c790974cff20" + "906cb051-9b11-48e4-9aee-4ec75309a597" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "43f053f6-93e8-43cd-9457-c790974cff20" + "906cb051-9b11-48e4-9aee-4ec75309a597" ], "elapsed-time": [ - "33" + "36" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" + ], "Expires": [ "-1" ] @@ -1036,46 +1036,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet1729')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3MjknKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet1785')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3ODUnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e73e0c3f-b4f3-4141-b3c9-fe69c5384f7b" + "f314825f-2467-4821-acc4-6700d257b95f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "e73e0c3f-b4f3-4141-b3c9-fe69c5384f7b" + "f314825f-2467-4821-acc4-6700d257b95f" ], "elapsed-time": [ - "47" + "48" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:41 GMT" + ], "Expires": [ "-1" ] @@ -1084,46 +1084,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet4950')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDQ5NTAnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet5144')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDUxNDQnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f57ff5ff-e67d-4599-ac56-9f8cb1defcf5" + "32bf7d65-ee2b-4b12-af31-a888fd8a81d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:58 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "f57ff5ff-e67d-4599-ac56-9f8cb1defcf5" + "32bf7d65-ee2b-4b12-af31-a888fd8a81d3" ], "elapsed-time": [ - "46" + "44" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:42 GMT" + ], "Expires": [ "-1" ] @@ -1132,46 +1132,46 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet2502')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDI1MDInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet3667')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDM2NjcnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1cff8eab-fafe-4714-af7c-3d5425550d82" + "476ddfe7-46b8-4e3c-acee-4c15801426c8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "B37EC449EE541CF5BC7B13CBD12C5330" + "7B562D56586DE48A5028E20D3A8A573A" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:11:59 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "1cff8eab-fafe-4714-af7c-3d5425550d82" + "476ddfe7-46b8-4e3c-acee-4c15801426c8" ], "elapsed-time": [ - "32" + "35" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:51:42 GMT" + ], "Expires": [ "-1" ] @@ -1180,19 +1180,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4369/providers/Microsoft.Search/searchServices/azs-5814?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODE0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1775/providers/Microsoft.Search/searchServices/azs-165?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNjU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ecb1b65-f2d3-4c2b-815e-cb635ce42ae0" + "673dee40-1475-48b4-ade4-e50f62cec5f4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -1202,41 +1202,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:01 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6ecb1b65-f2d3-4c2b-815e-cb635ce42ae0" + "673dee40-1475-48b4-ade4-e50f62cec5f4" ], "request-id": [ - "6ecb1b65-f2d3-4c2b-815e-cb635ce42ae0" + "673dee40-1475-48b4-ade4-e50f62cec5f4" ], "elapsed-time": [ - "774" + "2981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14944" + "14992" ], "x-ms-correlation-request-id": [ - "1a3bfa15-0604-4c09-b716-860cb3479bdb" + "55b249f6-d633-4ab5-9f1e-8e10b34913c8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221202Z:1a3bfa15-0604-4c09-b716-860cb3479bdb" + "NORTHEUROPE:20190808T175147Z:55b249f6-d633-4ab5-9f1e-8e10b34913c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:51:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1245,17 +1245,17 @@ ], "Names": { "GenerateName": [ - "azsmnet4369", - "azsmnet158", - "azsmnet8032", - "azsmnet8283", - "azsmnet9451", - "azsmnet1729", - "azsmnet4950", - "azsmnet2502" + "azsmnet1775", + "azsmnet1526", + "azsmnet7478", + "azsmnet5909", + "azsmnet5936", + "azsmnet1785", + "azsmnet5144", + "azsmnet3667" ], "GenerateServiceName": [ - "azs-5814" + "azs-165" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetThrowsExceptionWithNonShaperSkillWithNestedInputs.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetThrowsExceptionWithNonShaperSkillWithNestedInputs.json new file mode 100644 index 000000000000..139bdaaad8c6 --- /dev/null +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetThrowsExceptionWithNonShaperSkillWithNestedInputs.json @@ -0,0 +1,486 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4005f0c9-cd62-4e7d-b201-55a1b0bd01b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "d43dd4a2-f5d9-4fa7-b2a9-47d4a6444ab7" + ], + "x-ms-correlation-request-id": [ + "d43dd4a2-f5d9-4fa7-b2a9-47d4a6444ab7" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175102Z:d43dd4a2-f5d9-4fa7-b2a9-47d4a6444ab7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:02 GMT" + ], + "Content-Length": [ + "2230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"804f4a7a-7d6e-4df7-bf8c-e7f0106e16c2\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2396?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8bd9afb-e986-424b-b157-bbb459deb5fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "e2886338-e192-49c0-980e-a9e50cd939e4" + ], + "x-ms-correlation-request-id": [ + "e2886338-e192-49c0-980e-a9e50cd939e4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175102Z:e2886338-e192-49c0-980e-a9e50cd939e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:02 GMT" + ], + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396\",\r\n \"name\": \"azsmnet2396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396/providers/Microsoft.Search/searchServices/azs-4171?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTcxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55196874-1365-4fea-b964-737feb51f3c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2019-08-08T17%3A51%3A06.8389126Z'\"" + ], + "x-ms-request-id": [ + "55196874-1365-4fea-b964-737feb51f3c5" + ], + "request-id": [ + "55196874-1365-4fea-b964-737feb51f3c5" + ], + "elapsed-time": [ + "2228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "d42f79d9-c669-4088-a3e6-556fe051263c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175107Z:d42f79d9-c669-4088-a3e6-556fe051263c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:06 GMT" + ], + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396/providers/Microsoft.Search/searchServices/azs-4171\",\r\n \"name\": \"azs-4171\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396/providers/Microsoft.Search/searchServices/azs-4171/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTcxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2eff4e25-424d-49d3-8527-9cb83fa0bbc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2eff4e25-424d-49d3-8527-9cb83fa0bbc9" + ], + "request-id": [ + "2eff4e25-424d-49d3-8527-9cb83fa0bbc9" + ], + "elapsed-time": [ + "260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "4bbb3c0e-3630-4445-a017-bf2695b9d052" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175108Z:4bbb3c0e-3630-4445-a017-bf2695b9d052" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:08 GMT" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"25E500AC35B6395C171E5045C702EDE2\",\r\n \"secondaryKey\": \"0906DF93E343BB790AAB4B204BC1743E\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396/providers/Microsoft.Search/searchServices/azs-4171/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTcxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "360e8240-8262-46d2-b52c-ed931efb0544" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "360e8240-8262-46d2-b52c-ed931efb0544" + ], + "request-id": [ + "360e8240-8262-46d2-b52c-ed931efb0544" + ], + "elapsed-time": [ + "93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "876464c8-d242-4925-aba6-5e4e728bcdf8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175109Z:876464c8-d242-4925-aba6-5e4e728bcdf8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:08 GMT" + ], + "Content-Length": [ + "82" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D4C8FEAB106CD88A7A4F154BEF1CCA41\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Custom.WebApiSkill\",\r\n \"uri\": \"Invalid skill with nested inputed\",\r\n \"description\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"doc\",\r\n \"sourceContext\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/content\"\r\n },\r\n {\r\n \"name\": \"images\",\r\n \"source\": \"/document/normalized_images/*\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "client-request-id": [ + "571d6abf-6e97-4f56-be43-03e43f0a6144" + ], + "Accept-Language": [ + "en-US" + ], + "api-key": [ + "25E500AC35B6395C171E5045C702EDE2" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "752" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "571d6abf-6e97-4f56-be43-03e43f0a6144" + ], + "elapsed-time": [ + "36" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:10 GMT" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "135" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"One or more skills are invalid. Details: Skill '#1' is not allowed to have recursively defined inputs\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2396/providers/Microsoft.Search/searchServices/azs-4171?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTcxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19a026d9-7328-4443-b239-fea55e7aa4ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27617.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "19a026d9-7328-4443-b239-fea55e7aa4ca" + ], + "request-id": [ + "19a026d9-7328-4443-b239-fea55e7aa4ca" + ], + "elapsed-time": [ + "713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "11684860-2560-4bd4-aa0b-f784d1c72c85" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20190808T175113Z:11684860-2560-4bd4-aa0b-f784d1c72c85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 08 Aug 2019 17:51:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet2396" + ], + "GenerateServiceName": [ + "azs-4171" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json index b275515ffdd6..2757cc640b2a 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1dd6d8-6dcb-4b60-9801-f4326c1dac85" + "97002ccf-c84b-4a2f-95fc-f52f1a6a4bb8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:40 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1196" ], "x-ms-request-id": [ - "a21bb36f-e38b-46a4-a15a-5a80620acaf6" + "7bec32b7-b39d-477e-b6bb-5fc0cfd18ebc" ], "x-ms-correlation-request-id": [ - "a21bb36f-e38b-46a4-a15a-5a80620acaf6" + "7bec32b7-b39d-477e-b6bb-5fc0cfd18ebc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221040Z:a21bb36f-e38b-46a4-a15a-5a80620acaf6" + "NORTHEUROPE:20190808T174732Z:7bec32b7-b39d-477e-b6bb-5fc0cfd18ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:32 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3789?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9581?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NTgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0741d4df-720e-40c0-b557-effc1cccad0e" + "152f6af7-db3b-480d-8322-792d85a562d9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:41 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1155" + "1196" ], "x-ms-request-id": [ - "a2f0466b-d5fb-4482-a399-5adc3a56325e" + "b6245f19-a951-4a75-818c-bd04e878c010" ], "x-ms-correlation-request-id": [ - "a2f0466b-d5fb-4482-a399-5adc3a56325e" + "b6245f19-a951-4a75-818c-bd04e878c010" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221041Z:a2f0466b-d5fb-4482-a399-5adc3a56325e" + "NORTHEUROPE:20190808T174733Z:b6245f19-a951-4a75-818c-bd04e878c010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:33 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789\",\r\n \"name\": \"azsmnet3789\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581\",\r\n \"name\": \"azsmnet9581\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789/providers/Microsoft.Search/searchServices/azs-2946?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581/providers/Microsoft.Search/searchServices/azs-966?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NjY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bac04bab-db34-433d-bb9a-64da6434e634" + "fdf8ec69-10e9-45a8-a8af-a1c24d2475b4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:44 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A10%3A43.8954414Z'\"" + "W/\"datetime'2019-08-08T17%3A47%3A36.2444647Z'\"" ], "x-ms-request-id": [ - "bac04bab-db34-433d-bb9a-64da6434e634" + "fdf8ec69-10e9-45a8-a8af-a1c24d2475b4" ], "request-id": [ - "bac04bab-db34-433d-bb9a-64da6434e634" + "fdf8ec69-10e9-45a8-a8af-a1c24d2475b4" ], "elapsed-time": [ - "841" + "2013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1195" ], "x-ms-correlation-request-id": [ - "faf3633d-11f5-4a30-a44e-f3f51935a9a9" + "6f63d694-2847-4195-9700-8d27397a6536" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221044Z:faf3633d-11f5-4a30-a44e-f3f51935a9a9" + "NORTHEUROPE:20190808T174736Z:6f63d694-2847-4195-9700-8d27397a6536" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:36 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789/providers/Microsoft.Search/searchServices/azs-2946\",\r\n \"name\": \"azs-2946\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581/providers/Microsoft.Search/searchServices/azs-966\",\r\n \"name\": \"azs-966\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789/providers/Microsoft.Search/searchServices/azs-2946/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTQ2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581/providers/Microsoft.Search/searchServices/azs-966/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NjYvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8e41fd7-8633-43b7-81f5-ae2a80e24d5a" + "aed89b50-745e-460b-932d-263ffd5bded4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:46 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8e41fd7-8633-43b7-81f5-ae2a80e24d5a" + "aed89b50-745e-460b-932d-263ffd5bded4" ], "request-id": [ - "e8e41fd7-8633-43b7-81f5-ae2a80e24d5a" + "aed89b50-745e-460b-932d-263ffd5bded4" ], "elapsed-time": [ - "163" + "221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1195" ], "x-ms-correlation-request-id": [ - "b8d1951b-f724-4cfa-a8cc-824258ce7763" + "36f3f2bc-eec4-48b3-b47e-7f135325e0fc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221046Z:b8d1951b-f724-4cfa-a8cc-824258ce7763" + "NORTHEUROPE:20190808T174738Z:36f3f2bc-eec4-48b3-b47e-7f135325e0fc" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:38 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"728BF9A8698C05E5DD910031325EDF4D\",\r\n \"secondaryKey\": \"D078B49BEAD5C2F21B6154CE2555F907\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"4F7474BB1B5F62E2DE3EB42228AB2A45\",\r\n \"secondaryKey\": \"02D4F669AB899CBCC49F1CA243483E5C\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789/providers/Microsoft.Search/searchServices/azs-2946/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTQ2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581/providers/Microsoft.Search/searchServices/azs-966/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NjYvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e754c5ee-b564-4488-9914-121b4564ef9c" + "713a0185-3285-4d9c-9752-d746925f876a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:46 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e754c5ee-b564-4488-9914-121b4564ef9c" + "713a0185-3285-4d9c-9752-d746925f876a" ], "request-id": [ - "e754c5ee-b564-4488-9914-121b4564ef9c" + "713a0185-3285-4d9c-9752-d746925f876a" ], "elapsed-time": [ - "88" + "222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14998" ], "x-ms-correlation-request-id": [ - "51fb425c-aa46-4320-9ba5-dfa80e1875a4" + "5455f183-be02-48a3-a5e5-625bb73f6d99" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221047Z:51fb425c-aa46-4320-9ba5-dfa80e1875a4" + "NORTHEUROPE:20190808T174740Z:5455f183-be02-48a3-a5e5-625bb73f6d99" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:39 GMT" + ], "Content-Length": [ "82" ], @@ -336,46 +336,43 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C17D6B0D6A0E25A65F563ACC1BC00AF4\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"CFE1C0D9A8A5E15A2E4D4F591EC3F188\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet1541')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1NDEnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet7952')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc5NTInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5fee7e16-6198-48c8-a36e-b06155662308" + "3c6759f9-a263-45e1-9752-68db59f966a4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "728BF9A8698C05E5DD910031325EDF4D" + "4F7474BB1B5F62E2DE3EB42228AB2A45" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:48 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "5fee7e16-6198-48c8-a36e-b06155662308" + "3c6759f9-a263-45e1-9752-68db59f966a4" ], "elapsed-time": [ - "60" + "54" ], "OData-Version": [ "4.0" @@ -386,8 +383,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "114" + "Date": [ + "Thu, 08 Aug 2019 17:47:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -397,52 +394,55 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "113" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet1541' was found in a service named 'azs-2946'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet7952' was found in a service named 'azs-966'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/skillsets('azsmnet1541')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1NDEnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet7952')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc5NTInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "121582c0-4130-4b28-91d3-f357521ab3ca" + "11c5ec13-d735-468e-9280-960335f75676" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "728BF9A8698C05E5DD910031325EDF4D" + "4F7474BB1B5F62E2DE3EB42228AB2A45" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:48 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "121582c0-4130-4b28-91d3-f357521ab3ca" + "11c5ec13-d735-468e-9280-960335f75676" ], "elapsed-time": [ - "32" + "44" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:41 GMT" + ], "Expires": [ "-1" ] @@ -451,42 +451,39 @@ "StatusCode": 204 }, { - "RequestUri": "/skillsets('azsmnet1541')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE1NDEnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet7952')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc5NTInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a92ce87a-91e6-48d5-b7d1-07d147193d00" + "885ea540-fdc5-4440-b308-6b4cf2a566b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "728BF9A8698C05E5DD910031325EDF4D" + "4F7474BB1B5F62E2DE3EB42228AB2A45" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:48 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "a92ce87a-91e6-48d5-b7d1-07d147193d00" + "885ea540-fdc5-4440-b308-6b4cf2a566b3" ], "elapsed-time": [ - "11" + "16" ], "OData-Version": [ "4.0" @@ -497,8 +494,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "114" + "Date": [ + "Thu, 08 Aug 2019 17:47:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -508,31 +505,34 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "113" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet1541' was found in a service named 'azs-2946'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet7952' was found in a service named 'azs-966'.\"\r\n }\r\n}", "StatusCode": 404 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1541\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7952\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "2e30acd2-c8fa-4350-b8a9-8bca5eefddf6" + "6b59055c-71f0-416c-b19f-7a4bcac4fdb8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "728BF9A8698C05E5DD910031325EDF4D" + "4F7474BB1B5F62E2DE3EB42228AB2A45" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -545,23 +545,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:48 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D341AAF61\"" + "W/\"0x8D71C2882AD598A\"" ], "Location": [ - "https://azs-2946.search-dogfood.windows-int.net/skillsets('azsmnet1541')?api-version=2019-05-06" + "https://azs-966.search-dogfood.windows-int.net/skillsets('azsmnet7952')?api-version=2019-05-06" ], "request-id": [ - "2e30acd2-c8fa-4350-b8a9-8bca5eefddf6" + "6b59055c-71f0-416c-b19f-7a4bcac4fdb8" ], "elapsed-time": [ - "56" + "43" ], "OData-Version": [ "4.0" @@ -572,33 +569,36 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "682" + "Date": [ + "Thu, 08 Aug 2019 17:47:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "681" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2946.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D341AAF61\\\"\",\r\n \"name\": \"azsmnet1541\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-966.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2882AD598A\\\"\",\r\n \"name\": \"azsmnet7952\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3789/providers/Microsoft.Search/searchServices/azs-2946?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yOTQ2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9581/providers/Microsoft.Search/searchServices/azs-966?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NjY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6232667f-b9e7-40fc-a582-bc2efeea30cc" + "f448a060-d71e-4317-a439-edcb0ac9c40b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -608,41 +608,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:10:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6232667f-b9e7-40fc-a582-bc2efeea30cc" + "f448a060-d71e-4317-a439-edcb0ac9c40b" ], "request-id": [ - "6232667f-b9e7-40fc-a582-bc2efeea30cc" + "f448a060-d71e-4317-a439-edcb0ac9c40b" ], "elapsed-time": [ - "918" + "628" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14991" ], "x-ms-correlation-request-id": [ - "f89891e1-139c-4772-9dc6-bf0be21fce84" + "dce2825d-1eb7-4425-a792-7e4ff6b6e21c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221051Z:f89891e1-139c-4772-9dc6-bf0be21fce84" + "NORTHEUROPE:20190808T174743Z:dce2825d-1eb7-4425-a792-7e4ff6b6e21c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:47:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -651,11 +651,11 @@ ], "Names": { "GenerateName": [ - "azsmnet3789", - "azsmnet1541" + "azsmnet9581", + "azsmnet7952" ], "GenerateServiceName": [ - "azs-2946" + "azs-966" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json index fab357256e9d..066ee4287732 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6883f3b3-7f52-4fd4-82cf-358506c6f21d" + "f7709d71-f7d8-436a-bb4d-069abe37593e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:19 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1194" ], "x-ms-request-id": [ - "af3a07d2-c832-4be6-9f62-03d0531778ef" + "bad4f710-cd33-4c64-bfa1-3d325259e6fa" ], "x-ms-correlation-request-id": [ - "af3a07d2-c832-4be6-9f62-03d0531778ef" + "bad4f710-cd33-4c64-bfa1-3d325259e6fa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221519Z:af3a07d2-c832-4be6-9f62-03d0531778ef" + "NORTHEUROPE:20190808T174749Z:bad4f710-cd33-4c64-bfa1-3d325259e6fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:48 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6556?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTU2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7225?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MjI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5dfb94bc-25c6-4dd7-8d25-eff6cb71946c" + "be8a33f0-8d09-496e-b93b-467e27d4eaf2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1154" + "1194" ], "x-ms-request-id": [ - "8eae8777-0732-4d7e-aee0-194107d7f57c" + "908e6b9e-a503-4db0-bb93-afbc124e761b" ], "x-ms-correlation-request-id": [ - "8eae8777-0732-4d7e-aee0-194107d7f57c" + "908e6b9e-a503-4db0-bb93-afbc124e761b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221520Z:8eae8777-0732-4d7e-aee0-194107d7f57c" + "NORTHEUROPE:20190808T174749Z:908e6b9e-a503-4db0-bb93-afbc124e761b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:49 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556\",\r\n \"name\": \"azsmnet6556\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225\",\r\n \"name\": \"azsmnet7225\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556/providers/Microsoft.Search/searchServices/azs-3756?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225/providers/Microsoft.Search/searchServices/azs-3789?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4709e378-84b4-4d00-bb45-5452f8a9dc20" + "c01cb7fd-8442-4e17-ab81-1afa9cb5ab7a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:23 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A15%3A22.871325Z'\"" + "W/\"datetime'2019-08-08T17%3A47%3A52.335416Z'\"" ], "x-ms-request-id": [ - "4709e378-84b4-4d00-bb45-5452f8a9dc20" + "c01cb7fd-8442-4e17-ab81-1afa9cb5ab7a" ], "request-id": [ - "4709e378-84b4-4d00-bb45-5452f8a9dc20" + "c01cb7fd-8442-4e17-ab81-1afa9cb5ab7a" ], "elapsed-time": [ - "1029" + "1068" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1192" ], "x-ms-correlation-request-id": [ - "90f4094a-0642-41e2-8357-08672cdb5880" + "3fc84dce-2e8c-41a6-bed7-295bb9f54d62" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221523Z:90f4094a-0642-41e2-8357-08672cdb5880" + "NORTHEUROPE:20190808T174752Z:3fc84dce-2e8c-41a6-bed7-295bb9f54d62" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:52 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556/providers/Microsoft.Search/searchServices/azs-3756\",\r\n \"name\": \"azs-3756\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225/providers/Microsoft.Search/searchServices/azs-3789\",\r\n \"name\": \"azs-3789\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556/providers/Microsoft.Search/searchServices/azs-3756/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225/providers/Microsoft.Search/searchServices/azs-3789/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26db0f10-7bb1-44d4-8f3e-b2feb614a535" + "d37d4a35-e4e2-4232-b639-68d370ccc54c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:25 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26db0f10-7bb1-44d4-8f3e-b2feb614a535" + "d37d4a35-e4e2-4232-b639-68d370ccc54c" ], "request-id": [ - "26db0f10-7bb1-44d4-8f3e-b2feb614a535" + "d37d4a35-e4e2-4232-b639-68d370ccc54c" ], "elapsed-time": [ - "348" + "129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1192" ], "x-ms-correlation-request-id": [ - "e1378286-db5b-4f62-8e5a-2f4a59af1f54" + "1b3a1590-46c7-42d2-9f62-3b6f16201fd5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221525Z:e1378286-db5b-4f62-8e5a-2f4a59af1f54" + "NORTHEUROPE:20190808T174754Z:1b3a1590-46c7-42d2-9f62-3b6f16201fd5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:53 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"00A9FBF2D2ECFF87A35CDA412C489CAD\",\r\n \"secondaryKey\": \"4B644A28E3B920233B3C5D8907E0DDAB\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"9AB08793EF01B2A6F238F6288D979DC0\",\r\n \"secondaryKey\": \"D7C4D303DF84B3787B5CE3573A796E0A\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556/providers/Microsoft.Search/searchServices/azs-3756/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225/providers/Microsoft.Search/searchServices/azs-3789/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baffd2a1-fe8b-4c36-8123-31fe07d75a4f" + "ff791632-e4dd-4a4d-8af5-c51ab407bdf7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:25 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "baffd2a1-fe8b-4c36-8123-31fe07d75a4f" + "ff791632-e4dd-4a4d-8af5-c51ab407bdf7" ], "request-id": [ - "baffd2a1-fe8b-4c36-8123-31fe07d75a4f" + "ff791632-e4dd-4a4d-8af5-c51ab407bdf7" ], "elapsed-time": [ - "99" + "114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14994" ], "x-ms-correlation-request-id": [ - "d6c14596-08c5-4850-9d6c-27b1f3503066" + "292da091-205e-4d78-b404-51581c56bb37" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221525Z:d6c14596-08c5-4850-9d6c-27b1f3503066" + "NORTHEUROPE:20190808T174754Z:292da091-205e-4d78-b404-51581c56bb37" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:47:54 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"270744FCE8088E5E9555BF7EF3ECEFAF\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"0C0A1EA264443F30EFF2A8E7A8723874\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,36 +346,33 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ce50861e-aa1c-414a-9f3c-b9636670dde5" + "a0d04502-f24d-4905-8196-777fa323e519" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "00A9FBF2D2ECFF87A35CDA412C489CAD" + "9AB08793EF01B2A6F238F6288D979DC0" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:27 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "ce50861e-aa1c-414a-9f3c-b9636670dde5" + "a0d04502-f24d-4905-8196-777fa323e519" ], "elapsed-time": [ - "17" + "97" ], "OData-Version": [ "4.0" @@ -386,8 +383,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "106" + "Date": [ + "Thu, 08 Aug 2019 17:47:56 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -397,25 +394,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "106" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'nonexistent' was found in service 'azs-3756'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'nonexistent' was found in service 'azs-3789'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6556/providers/Microsoft.Search/searchServices/azs-3756?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7225/providers/Microsoft.Search/searchServices/azs-3789?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MjI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae3af265-4339-4ab3-a2e1-9e3833ab0fd4" + "eca6c839-994b-40d5-8d01-2dc8a7b498b9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -425,41 +425,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:15:30 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ae3af265-4339-4ab3-a2e1-9e3833ab0fd4" + "eca6c839-994b-40d5-8d01-2dc8a7b498b9" ], "request-id": [ - "ae3af265-4339-4ab3-a2e1-9e3833ab0fd4" + "eca6c839-994b-40d5-8d01-2dc8a7b498b9" ], "elapsed-time": [ - "781" + "645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14955" + "14993" ], "x-ms-correlation-request-id": [ - "2e3e51a0-cf33-40b6-a2fa-e54992182400" + "4e00ef00-243d-403f-802d-5e6452ed6a9d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221530Z:2e3e51a0-cf33-40b6-a2fa-e54992182400" + "NORTHEUROPE:20190808T174758Z:4e00ef00-243d-403f-802d-5e6452ed6a9d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:47:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -468,10 +468,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6556" + "azsmnet7225" ], "GenerateServiceName": [ - "azs-3756" + "azs-3789" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json index b743ec445743..7542e63d624a 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d355ccfd-5a85-495e-8141-3a9aa1016152" + "6567f8cb-e23c-452e-bf22-f0007f574ca3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1193" ], "x-ms-request-id": [ - "42ba4d4a-6c19-4790-9eae-6f464830dad9" + "136db904-baee-4946-96ea-2564bc149c24" ], "x-ms-correlation-request-id": [ - "42ba4d4a-6c19-4790-9eae-6f464830dad9" + "136db904-baee-4946-96ea-2564bc149c24" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221250Z:42ba4d4a-6c19-4790-9eae-6f464830dad9" + "NORTHEUROPE:20190808T174819Z:136db904-baee-4946-96ea-2564bc149c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:18 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4496?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2653?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "293feda9-807b-4f70-93a2-b7838988364c" + "38517f3e-0f49-4e79-b6c3-f273114bcee1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1193" ], "x-ms-request-id": [ - "1d3e8b95-fa40-43de-9237-35a53b9d146e" + "6901ea86-689e-4239-b279-c71c9d132f90" ], "x-ms-correlation-request-id": [ - "1d3e8b95-fa40-43de-9237-35a53b9d146e" + "6901ea86-689e-4239-b279-c71c9d132f90" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221251Z:1d3e8b95-fa40-43de-9237-35a53b9d146e" + "NORTHEUROPE:20190808T174820Z:6901ea86-689e-4239-b279-c71c9d132f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:20 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496\",\r\n \"name\": \"azsmnet4496\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653\",\r\n \"name\": \"azsmnet2653\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496/providers/Microsoft.Search/searchServices/azs-9482?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDgyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653/providers/Microsoft.Search/searchServices/azs-504?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MDQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3546fd83-cc85-498b-9884-3da34fcc7511" + "e70727ce-e500-48eb-a638-ccf86d4e9e1a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:53 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A12%3A53.8654954Z'\"" + "W/\"datetime'2019-08-08T17%3A48%3A22.5698722Z'\"" ], "x-ms-request-id": [ - "3546fd83-cc85-498b-9884-3da34fcc7511" + "e70727ce-e500-48eb-a638-ccf86d4e9e1a" ], "request-id": [ - "3546fd83-cc85-498b-9884-3da34fcc7511" + "e70727ce-e500-48eb-a638-ccf86d4e9e1a" ], "elapsed-time": [ - "1031" + "1362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1192" ], "x-ms-correlation-request-id": [ - "9b7414e7-3167-42bd-8d64-8ebce2c1cfd5" + "b773e0ce-7a15-443d-890a-0e1ee5980260" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221254Z:9b7414e7-3167-42bd-8d64-8ebce2c1cfd5" + "NORTHEUROPE:20190808T174823Z:b773e0ce-7a15-443d-890a-0e1ee5980260" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:23 GMT" + ], "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496/providers/Microsoft.Search/searchServices/azs-9482\",\r\n \"name\": \"azs-9482\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653/providers/Microsoft.Search/searchServices/azs-504\",\r\n \"name\": \"azs-504\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496/providers/Microsoft.Search/searchServices/azs-9482/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDgyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653/providers/Microsoft.Search/searchServices/azs-504/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MDQvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5de73bc4-00a7-49f5-8f2d-9a5adaafdb25" + "3ec05da0-71f4-4599-9778-404c78e2bba4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:56 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5de73bc4-00a7-49f5-8f2d-9a5adaafdb25" + "3ec05da0-71f4-4599-9778-404c78e2bba4" ], "request-id": [ - "5de73bc4-00a7-49f5-8f2d-9a5adaafdb25" + "3ec05da0-71f4-4599-9778-404c78e2bba4" ], "elapsed-time": [ - "118" + "251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1192" ], "x-ms-correlation-request-id": [ - "f490f0b7-cc52-489c-875b-f75e01ec7a4c" + "6c060f73-748f-496a-b485-e298ee16a776" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221257Z:f490f0b7-cc52-489c-875b-f75e01ec7a4c" + "NORTHEUROPE:20190808T174824Z:6c060f73-748f-496a-b485-e298ee16a776" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:24 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9F112D80CF0AFC82550E0F7E7BEEAACC\",\r\n \"secondaryKey\": \"5EDC058089B5E506BF35AD873C03A9C5\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C9D7EEEFFFBA92DFF4C5F4E1DD19E383\",\r\n \"secondaryKey\": \"59DC723B38C2FA9CBFAC0EC372C27607\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496/providers/Microsoft.Search/searchServices/azs-9482/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDgyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653/providers/Microsoft.Search/searchServices/azs-504/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MDQvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb0f664c-2c1b-48eb-8c5a-ae9a8eb9c0b6" + "5bbf91c7-05b0-4ff5-8dd4-a9e23f8aa912" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:56 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fb0f664c-2c1b-48eb-8c5a-ae9a8eb9c0b6" + "5bbf91c7-05b0-4ff5-8dd4-a9e23f8aa912" ], "request-id": [ - "fb0f664c-2c1b-48eb-8c5a-ae9a8eb9c0b6" + "5bbf91c7-05b0-4ff5-8dd4-a9e23f8aa912" ], "elapsed-time": [ - "137" + "297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14996" ], "x-ms-correlation-request-id": [ - "f5a68628-12ec-4e93-9bb2-af93e4e97537" + "7b72e641-3edf-4a6a-be11-ab661ce46e01" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221257Z:f5a68628-12ec-4e93-9bb2-af93e4e97537" + "NORTHEUROPE:20190808T174825Z:7b72e641-3edf-4a6a-be11-ab661ce46e01" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:25 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B45D228D1C12E17A9B5D06E036777899\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F4C7DE15292CB6EA7ECC90976D3A74C5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4008\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6155\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "caadb1ba-bf22-4bb5-8d79-c2a2e8db4c5d" + "7f077ef7-6bcd-4d17-a140-ace87f23d5fc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9F112D80CF0AFC82550E0F7E7BEEAACC" + "C9D7EEEFFFBA92DFF4C5F4E1DD19E383" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D820CE603\"" + "W/\"0x8D71C289D8AD77A\"" ], "Location": [ - "https://azs-9482.search-dogfood.windows-int.net/skillsets('azsmnet4008')?api-version=2019-05-06" + "https://azs-504.search-dogfood.windows-int.net/skillsets('azsmnet6155')?api-version=2019-05-06" ], "request-id": [ - "caadb1ba-bf22-4bb5-8d79-c2a2e8db4c5d" + "7f077ef7-6bcd-4d17-a140-ace87f23d5fc" ], "elapsed-time": [ - "70" + "108" ], "OData-Version": [ "4.0" @@ -398,59 +395,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "686" + "Date": [ + "Thu, 08 Aug 2019 17:48:25 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "685" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9482.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D820CE603\\\"\",\r\n \"name\": \"azsmnet4008\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-504.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C289D8AD77A\\\"\",\r\n \"name\": \"azsmnet6155\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/skillsets('azsmnet4008')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDQwMDgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet6155')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDYxNTUnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "935c90f1-55c6-429f-bbf2-aeddc27593a3" + "7346f0d0-13f1-4ea4-9518-13ca889441b5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9F112D80CF0AFC82550E0F7E7BEEAACC" + "C9D7EEEFFFBA92DFF4C5F4E1DD19E383" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:59 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5D820CE603\"" + "W/\"0x8D71C289D8AD77A\"" ], "request-id": [ - "935c90f1-55c6-429f-bbf2-aeddc27593a3" + "7346f0d0-13f1-4ea4-9518-13ca889441b5" ], "elapsed-time": [ - "40" + "49" ], "OData-Version": [ "4.0" @@ -461,60 +458,63 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "689" + "Date": [ + "Thu, 08 Aug 2019 17:48:25 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "688" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9482.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5D820CE603\\\"\",\r\n \"name\": \"azsmnet4008\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-504.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C289D8AD77A\\\"\",\r\n \"name\": \"azsmnet6155\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet4008')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDQwMDgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet6155')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDYxNTUnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d463d498-64df-4791-bb6d-ed3c27f2144d" + "97f707bd-45f4-48a9-a04d-364fb65a75a0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "9F112D80CF0AFC82550E0F7E7BEEAACC" + "C9D7EEEFFFBA92DFF4C5F4E1DD19E383" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:59 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "d463d498-64df-4791-bb6d-ed3c27f2144d" + "97f707bd-45f4-48a9-a04d-364fb65a75a0" ], "elapsed-time": [ - "33" + "25" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:48:26 GMT" + ], "Expires": [ "-1" ] @@ -523,19 +523,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4496/providers/Microsoft.Search/searchServices/azs-9482?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDgyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2653/providers/Microsoft.Search/searchServices/azs-504?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MDQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "102312e9-c2ab-4730-a94d-135f8f16747e" + "35666a23-93c0-492f-89aa-47d2b0396d61" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -545,41 +545,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:02 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "102312e9-c2ab-4730-a94d-135f8f16747e" + "35666a23-93c0-492f-89aa-47d2b0396d61" ], "request-id": [ - "102312e9-c2ab-4730-a94d-135f8f16747e" + "35666a23-93c0-492f-89aa-47d2b0396d61" ], "elapsed-time": [ - "841" + "934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14943" + "14990" ], "x-ms-correlation-request-id": [ - "e72c4fe4-9b70-4c7a-be56-a4694e8be3c9" + "fb39c4df-2c75-48b1-b2d7-77488c956ca1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221302Z:e72c4fe4-9b70-4c7a-be56-a4694e8be3c9" + "NORTHEUROPE:20190808T174829Z:fb39c4df-2c75-48b1-b2d7-77488c956ca1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:48:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -588,11 +588,11 @@ ], "Names": { "GenerateName": [ - "azsmnet4496", - "azsmnet4008" + "azsmnet2653", + "azsmnet6155" ], "GenerateServiceName": [ - "azs-9482" + "azs-504" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json index e76123a93f9f..cbd2486a9e30 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49f2315d-bd16-4d9f-b985-7ceb90f67d00" + "83c0a14b-c22e-4d98-9541-7d0b41843940" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:18 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1199" ], "x-ms-request-id": [ - "27d9a0f4-a7b5-4e15-9034-56bea30e31c8" + "88a49bba-dcea-4711-9733-a7be22915aa8" ], "x-ms-correlation-request-id": [ - "27d9a0f4-a7b5-4e15-9034-56bea30e31c8" + "88a49bba-dcea-4711-9733-a7be22915aa8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221419Z:27d9a0f4-a7b5-4e15-9034-56bea30e31c8" + "NORTHEUROPE:20190808T174604Z:88a49bba-dcea-4711-9733-a7be22915aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:04 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5551?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1NTUxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4343?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MzQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df7db0b0-a905-4ed5-a68a-8d5339387792" + "cd946746-7c85-41c1-a2b7-e98d9dd0bccf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1199" ], "x-ms-request-id": [ - "dd2da0a3-a679-4ea7-9449-9c317080fa8f" + "720789f4-4891-42f8-baa0-d1c7fb169c5b" ], "x-ms-correlation-request-id": [ - "dd2da0a3-a679-4ea7-9449-9c317080fa8f" + "720789f4-4891-42f8-baa0-d1c7fb169c5b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221420Z:dd2da0a3-a679-4ea7-9449-9c317080fa8f" + "NORTHEUROPE:20190808T174605Z:720789f4-4891-42f8-baa0-d1c7fb169c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:05 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551\",\r\n \"name\": \"azsmnet5551\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343\",\r\n \"name\": \"azsmnet4343\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551/providers/Microsoft.Search/searchServices/azs-348?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343/providers/Microsoft.Search/searchServices/azs-3768?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f13f847-80d4-41fb-be4a-fb27e5652b44" + "0e0150e0-42de-447a-8d28-46d9456b5c29" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:22 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A14%3A22.4154203Z'\"" + "W/\"datetime'2019-08-08T17%3A46%3A08.2290609Z'\"" ], "x-ms-request-id": [ - "8f13f847-80d4-41fb-be4a-fb27e5652b44" + "0e0150e0-42de-447a-8d28-46d9456b5c29" ], "request-id": [ - "8f13f847-80d4-41fb-be4a-fb27e5652b44" + "0e0150e0-42de-447a-8d28-46d9456b5c29" ], "elapsed-time": [ - "1130" + "1230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1132" + "1197" ], "x-ms-correlation-request-id": [ - "1411335b-6002-4fc7-aeb4-768969dd6e49" + "73a36356-9963-411d-80e4-7c626eed1f06" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221423Z:1411335b-6002-4fc7-aeb4-768969dd6e49" + "NORTHEUROPE:20190808T174608Z:73a36356-9963-411d-80e4-7c626eed1f06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:08 GMT" + ], "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551/providers/Microsoft.Search/searchServices/azs-348\",\r\n \"name\": \"azs-348\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343/providers/Microsoft.Search/searchServices/azs-3768\",\r\n \"name\": \"azs-3768\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551/providers/Microsoft.Search/searchServices/azs-348/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDgvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343/providers/Microsoft.Search/searchServices/azs-3768/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzY4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aafdf7e1-17ac-4739-b174-cf75ddab830c" + "518b632f-c973-43e5-867a-d0c34bf46008" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:24 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aafdf7e1-17ac-4739-b174-cf75ddab830c" + "518b632f-c973-43e5-867a-d0c34bf46008" ], "request-id": [ - "aafdf7e1-17ac-4739-b174-cf75ddab830c" + "518b632f-c973-43e5-867a-d0c34bf46008" ], "elapsed-time": [ - "246" + "160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1132" + "1197" ], "x-ms-correlation-request-id": [ - "47275703-c221-49df-9123-38d781d67239" + "35e8deef-b3da-4c1e-9030-2eb8acc9d8d1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221425Z:47275703-c221-49df-9123-38d781d67239" + "NORTHEUROPE:20190808T174610Z:35e8deef-b3da-4c1e-9030-2eb8acc9d8d1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:10 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"96AA854E8B9A9AD5BA059ADB0B11A5EB\",\r\n \"secondaryKey\": \"92B814DFA50583B3D06C67D200D10052\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"8266589E7C011D5FACE4ACF7006D46F4\",\r\n \"secondaryKey\": \"30A3A6057024F40B041212CFFB7426C2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551/providers/Microsoft.Search/searchServices/azs-348/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343/providers/Microsoft.Search/searchServices/azs-3768/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzY4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "193da554-67a3-4975-bea5-6ce6f239f0d1" + "b41c0119-2d97-4f61-b623-71cef4ec8fe0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:24 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "193da554-67a3-4975-bea5-6ce6f239f0d1" + "b41c0119-2d97-4f61-b623-71cef4ec8fe0" ], "request-id": [ - "193da554-67a3-4975-bea5-6ce6f239f0d1" + "b41c0119-2d97-4f61-b623-71cef4ec8fe0" ], "elapsed-time": [ - "217" + "119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14998" ], "x-ms-correlation-request-id": [ - "dd0c5ff0-3fb1-4d25-883a-9a17d3f58d38" + "0076c729-8a05-45d0-b37d-d84bff59b215" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221425Z:dd0c5ff0-3fb1-4d25-883a-9a17d3f58d38" + "NORTHEUROPE:20190808T174610Z:0076c729-8a05-45d0-b37d-d84bff59b215" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:10 GMT" + ], "Content-Length": [ "82" ], @@ -336,29 +336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F7E139AC2F944993019C46936263A7B6\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"36ACEE887F4B2CE03B1E2B5DE2B3E706\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7658\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1702\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "2bf4107b-9f56-443d-88c2-4f5ff1b5bb0b" + "d83ea9f0-4265-43d1-b833-e98d4c90746c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "96AA854E8B9A9AD5BA059ADB0B11A5EB" + "8266589E7C011D5FACE4ACF7006D46F4" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,23 +371,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DB62025A2\"" + "W/\"0x8D71C284D65AD3F\"" ], "Location": [ - "https://azs-348.search-dogfood.windows-int.net/skillsets('azsmnet7658')?api-version=2019-05-06" + "https://azs-3768.search-dogfood.windows-int.net/skillsets('azsmnet1702')?api-version=2019-05-06" ], "request-id": [ - "2bf4107b-9f56-443d-88c2-4f5ff1b5bb0b" + "d83ea9f0-4265-43d1-b833-e98d4c90746c" ], "elapsed-time": [ - "81" + "161" ], "OData-Version": [ "4.0" @@ -398,59 +395,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "681" + "Date": [ + "Thu, 08 Aug 2019 17:46:11 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "682" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-348.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DB62025A2\\\"\",\r\n \"name\": \"azsmnet7658\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3768.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C284D65AD3F\\\"\",\r\n \"name\": \"azsmnet1702\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/skillsets('azsmnet7658')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc2NTgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet1702')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3MDInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "27359497-4efb-4c02-849d-f4d585e1a046" + "a8fa68af-d640-4642-b874-60263f62669f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "96AA854E8B9A9AD5BA059ADB0B11A5EB" + "8266589E7C011D5FACE4ACF7006D46F4" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:26 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DB62025A2\"" + "W/\"0x8D71C284D65AD3F\"" ], "request-id": [ - "27359497-4efb-4c02-849d-f4d585e1a046" + "a8fa68af-d640-4642-b874-60263f62669f" ], "elapsed-time": [ - "44" + "52" ], "OData-Version": [ "4.0" @@ -461,60 +458,63 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "684" + "Date": [ + "Thu, 08 Aug 2019 17:46:11 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "685" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-348.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DB62025A2\\\"\",\r\n \"name\": \"azsmnet7658\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3768.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C284D65AD3F\\\"\",\r\n \"name\": \"azsmnet1702\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet7658')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc2NTgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet1702')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3MDInKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0f004cc9-8b8d-4ea2-b35e-36dbb6723683" + "cf946f46-99c3-4248-82b7-2d2c10fceb26" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "96AA854E8B9A9AD5BA059ADB0B11A5EB" + "8266589E7C011D5FACE4ACF7006D46F4" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:26 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "0f004cc9-8b8d-4ea2-b35e-36dbb6723683" + "cf946f46-99c3-4248-82b7-2d2c10fceb26" ], "elapsed-time": [ - "33" + "41" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:11 GMT" + ], "Expires": [ "-1" ] @@ -523,19 +523,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5551/providers/Microsoft.Search/searchServices/azs-348?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4343/providers/Microsoft.Search/searchServices/azs-3768?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fff3ec4-46a2-4290-be5c-eff81a9c7c84" + "8d78b529-deec-4135-a844-10659731da9b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -545,41 +545,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:14:29 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5fff3ec4-46a2-4290-be5c-eff81a9c7c84" + "8d78b529-deec-4135-a844-10659731da9b" ], "request-id": [ - "5fff3ec4-46a2-4290-be5c-eff81a9c7c84" + "8d78b529-deec-4135-a844-10659731da9b" ], "elapsed-time": [ - "857" + "636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14953" + "14997" ], "x-ms-correlation-request-id": [ - "c7988d91-7029-4989-9760-92547455123b" + "190491fa-9f72-4af6-8cbf-22a0aaa9e9bc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221429Z:c7988d91-7029-4989-9760-92547455123b" + "NORTHEUROPE:20190808T174614Z:190491fa-9f72-4af6-8cbf-22a0aaa9e9bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:46:14 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -588,11 +588,11 @@ ], "Names": { "GenerateName": [ - "azsmnet5551", - "azsmnet7658" + "azsmnet4343", + "azsmnet1702" ], "GenerateServiceName": [ - "azs-348" + "azs-3768" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json index db20df7dd499..d1f33ce20dbf 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22ee5b6e-b1d1-42f6-b4df-ff9f3568935b" + "c820ae4b-d7d4-4d22-8319-5e60bb06146c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:43 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1134" + "1198" ], "x-ms-request-id": [ - "5f657e08-821b-4bc2-bbab-a0429258b6a7" + "fce736dc-bb66-434a-a852-5ef958973ca7" ], "x-ms-correlation-request-id": [ - "5f657e08-821b-4bc2-bbab-a0429258b6a7" + "fce736dc-bb66-434a-a852-5ef958973ca7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221343Z:5f657e08-821b-4bc2-bbab-a0429258b6a7" + "NORTHEUROPE:20190808T174618Z:fce736dc-bb66-434a-a852-5ef958973ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:17 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6216?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MjE2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9458?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDU4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23ea32d4-de14-476e-95e4-fd042a2c7919" + "7ade2776-6952-4aa5-b2ec-3effe2219582" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:43 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1134" + "1198" ], "x-ms-request-id": [ - "e291321a-09ca-47d3-88a7-aba66d8f07f4" + "aba3aaee-ecb3-4d7f-8a0b-883e99df2f3f" ], "x-ms-correlation-request-id": [ - "e291321a-09ca-47d3-88a7-aba66d8f07f4" + "aba3aaee-ecb3-4d7f-8a0b-883e99df2f3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221344Z:e291321a-09ca-47d3-88a7-aba66d8f07f4" + "NORTHEUROPE:20190808T174619Z:aba3aaee-ecb3-4d7f-8a0b-883e99df2f3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:18 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216\",\r\n \"name\": \"azsmnet6216\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458\",\r\n \"name\": \"azsmnet9458\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216/providers/Microsoft.Search/searchServices/azs-6589?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458/providers/Microsoft.Search/searchServices/azs-2305?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzA1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a510853-0cdb-4d84-9d9c-6e42a7fc916b" + "f53e534d-e443-4b88-9a94-06381374b375" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:46 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A13%3A46.5020228Z'\"" + "W/\"datetime'2019-08-08T17%3A46%3A22.9740121Z'\"" ], "x-ms-request-id": [ - "4a510853-0cdb-4d84-9d9c-6e42a7fc916b" + "f53e534d-e443-4b88-9a94-06381374b375" ], "request-id": [ - "4a510853-0cdb-4d84-9d9c-6e42a7fc916b" + "f53e534d-e443-4b88-9a94-06381374b375" ], "elapsed-time": [ - "959" + "978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1197" ], "x-ms-correlation-request-id": [ - "520139e1-f52f-4819-99c3-639b92b0e976" + "f23e5935-7919-40b1-80ae-b0330b5f1397" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221346Z:520139e1-f52f-4819-99c3-639b92b0e976" + "NORTHEUROPE:20190808T174623Z:f23e5935-7919-40b1-80ae-b0330b5f1397" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:23 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216/providers/Microsoft.Search/searchServices/azs-6589\",\r\n \"name\": \"azs-6589\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458/providers/Microsoft.Search/searchServices/azs-2305\",\r\n \"name\": \"azs-2305\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216/providers/Microsoft.Search/searchServices/azs-6589/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTg5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458/providers/Microsoft.Search/searchServices/azs-2305/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzA1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "565977eb-e954-4896-8ded-3e997a5dda29" + "5d1e4519-d042-47e1-a0f2-1320d872af37" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:47 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "565977eb-e954-4896-8ded-3e997a5dda29" + "5d1e4519-d042-47e1-a0f2-1320d872af37" ], "request-id": [ - "565977eb-e954-4896-8ded-3e997a5dda29" + "5d1e4519-d042-47e1-a0f2-1320d872af37" ], "elapsed-time": [ - "166" + "352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1197" ], "x-ms-correlation-request-id": [ - "78c7e5fe-0fc3-43f3-ae21-ea849c0055a9" + "ba9b07e5-7ba0-43a1-9b0d-02e95493e9e8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221348Z:78c7e5fe-0fc3-43f3-ae21-ea849c0055a9" + "NORTHEUROPE:20190808T174625Z:ba9b07e5-7ba0-43a1-9b0d-02e95493e9e8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:25 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"4472DE460DF0E6E16E46E9E177EABB4F\",\r\n \"secondaryKey\": \"07EF713ED5A3D06CDBA61313ACD2BCFA\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"E44FF9AE5FDA15D90049C763CACB6A68\",\r\n \"secondaryKey\": \"DDF5B2FB5005A514964EFCEEAAB6D591\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216/providers/Microsoft.Search/searchServices/azs-6589/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTg5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458/providers/Microsoft.Search/searchServices/azs-2305/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzA1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda983ed-cd4a-46ff-b08d-4c6e83bd3bca" + "6045e73c-fb5c-4697-8bea-5709143d72a1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:49 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bda983ed-cd4a-46ff-b08d-4c6e83bd3bca" + "6045e73c-fb5c-4697-8bea-5709143d72a1" ], "request-id": [ - "bda983ed-cd4a-46ff-b08d-4c6e83bd3bca" + "6045e73c-fb5c-4697-8bea-5709143d72a1" ], "elapsed-time": [ - "88" + "533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14999" ], "x-ms-correlation-request-id": [ - "b9045f1c-216f-47e7-9ba4-8b2843bf9323" + "3a802488-7401-4104-8b5d-28e84c53461f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221349Z:b9045f1c-216f-47e7-9ba4-8b2843bf9323" + "NORTHEUROPE:20190808T174626Z:3a802488-7401-4104-8b5d-28e84c53461f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:26 GMT" + ], "Content-Length": [ "82" ], @@ -336,58 +336,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"36367B4F362448DE40D1B5395B5B647C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D029C4BBC06017250DDDE4A9BADAF648\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { "RequestUri": "/skillsets?api-version=2019-05-06", "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5788\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet39\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "ee59053a-b8d8-4bf0-8c5d-142aa08a00c9" + "70da2b0a-fa74-4d80-af3c-b618ddf46f0c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4472DE460DF0E6E16E46E9E177EABB4F" + "E44FF9AE5FDA15D90049C763CACB6A68" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "686" + "684" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DA10FEBE5\"" + "W/\"0x8D71C2856867779\"" ], "Location": [ - "https://azs-6589.search-dogfood.windows-int.net/skillsets('azsmnet5788')?api-version=2019-05-06" + "https://azs-2305.search-dogfood.windows-int.net/skillsets('azsmnet39')?api-version=2019-05-06" ], "request-id": [ - "ee59053a-b8d8-4bf0-8c5d-142aa08a00c9" + "70da2b0a-fa74-4d80-af3c-b618ddf46f0c" ], "elapsed-time": [ - "168" + "41" ], "OData-Version": [ "4.0" @@ -398,59 +395,59 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "681" + "Date": [ + "Thu, 08 Aug 2019 17:46:27 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal" ], "Expires": [ "-1" + ], + "Content-Length": [ + "679" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6589.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DA10FEBE5\\\"\",\r\n \"name\": \"azsmnet5788\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2305.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2856867779\\\"\",\r\n \"name\": \"azsmnet39\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": null,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 201 }, { - "RequestUri": "/skillsets('azsmnet5788')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU3ODgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet39')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDM5Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0297cf62-ddc6-4dcb-8552-af22eb9153c4" + "ce54d845-9bcd-4ed9-a93f-b46a5e6081fa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4472DE460DF0E6E16E46E9E177EABB4F" + "E44FF9AE5FDA15D90049C763CACB6A68" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:51 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D6CB5DA10FEBE5\"" + "W/\"0x8D71C2856867779\"" ], "request-id": [ - "0297cf62-ddc6-4dcb-8552-af22eb9153c4" + "ce54d845-9bcd-4ed9-a93f-b46a5e6081fa" ], "elapsed-time": [ - "57" + "29" ], "OData-Version": [ "4.0" @@ -461,60 +458,63 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "684" + "Date": [ + "Thu, 08 Aug 2019 17:46:27 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" + ], + "Content-Length": [ + "682" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6589.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D6CB5DA10FEBE5\\\"\",\r\n \"name\": \"azsmnet5788\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2305.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D71C2856867779\\\"\",\r\n \"name\": \"azsmnet39\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"name\": \"#1\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\",\r\n \"sourceContext\": null,\r\n \"inputs\": []\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"cognitiveServices\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/skillsets('azsmnet5788')?api-version=2019-05-06", - "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU3ODgnKT9hcGktdmVyc2lvbj0yMDE5LTA1LTA2", + "RequestUri": "/skillsets('azsmnet39')?api-version=2019-05-06", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDM5Jyk/YXBpLXZlcnNpb249MjAxOS0wNS0wNg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1008e96a-0d75-42c2-bedc-245763024142" + "2f9d53e9-0638-4e3e-a084-be10d6096d55" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "4472DE460DF0E6E16E46E9E177EABB4F" + "E44FF9AE5FDA15D90049C763CACB6A68" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:51 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "1008e96a-0d75-42c2-bedc-245763024142" + "2f9d53e9-0638-4e3e-a084-be10d6096d55" ], "elapsed-time": [ - "39" + "37" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], + "Date": [ + "Thu, 08 Aug 2019 17:46:27 GMT" + ], "Expires": [ "-1" ] @@ -523,19 +523,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6216/providers/Microsoft.Search/searchServices/azs-6589?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9458/providers/Microsoft.Search/searchServices/azs-2305?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDU4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzA1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68e03bd1-441a-4bdc-bbd2-dce606bd666f" + "1b65986f-e2f0-43ce-aae4-fdc5e50f8d8a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -545,41 +545,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:13:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "68e03bd1-441a-4bdc-bbd2-dce606bd666f" + "1b65986f-e2f0-43ce-aae4-fdc5e50f8d8a" ], "request-id": [ - "68e03bd1-441a-4bdc-bbd2-dce606bd666f" + "1b65986f-e2f0-43ce-aae4-fdc5e50f8d8a" ], "elapsed-time": [ - "720" + "880" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14943" + "14998" ], "x-ms-correlation-request-id": [ - "7fef61eb-6a5a-47a5-8688-6a0133f40c61" + "ca079bb1-9f5b-4d88-be49-e089c3d8edf6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221354Z:7fef61eb-6a5a-47a5-8688-6a0133f40c61" + "NORTHEUROPE:20190808T174629Z:ca079bb1-9f5b-4d88-be49-e089c3d8edf6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:46:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -588,11 +588,11 @@ ], "Names": { "GenerateName": [ - "azsmnet6216", - "azsmnet5788" + "azsmnet9458", + "azsmnet39" ], "GenerateServiceName": [ - "azs-6589" + "azs-2305" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json index 07483f1a0598..81a7a3f90c43 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json +++ b/sdk/search/Microsoft.Azure.Search/tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bbeb4e3-e868-4f4f-9432-edbd196a70c2" + "1c6d3dd8-744a-4ffd-a047-614948d6043c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:29 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1197" ], "x-ms-request-id": [ - "38a6048b-1af2-40d3-830e-d23620fc2036" + "350e5c2e-8052-49ce-a91a-39365a8fe73b" ], "x-ms-correlation-request-id": [ - "38a6048b-1af2-40d3-830e-d23620fc2036" + "350e5c2e-8052-49ce-a91a-39365a8fe73b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221230Z:38a6048b-1af2-40d3-830e-d23620fc2036" + "NORTHEUROPE:20190808T174532Z:350e5c2e-8052-49ce-a91a-39365a8fe73b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,6 +44,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:45:31 GMT" + ], "Content-Length": [ "2230" ], @@ -61,19 +61,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8881?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9440?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDQwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a80afce-ebbc-4a34-a04e-b9c23c37cdf3" + "dc90b34f-8f8a-45b5-a522-2a5cd1db99fa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:29 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1197" ], "x-ms-request-id": [ - "52d285a2-f78f-48cb-840d-86d9cb80add9" + "e9bc12bb-3327-45fd-886c-a10a23642d14" ], "x-ms-correlation-request-id": [ - "52d285a2-f78f-48cb-840d-86d9cb80add9" + "e9bc12bb-3327-45fd-886c-a10a23642d14" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221230Z:52d285a2-f78f-48cb-840d-86d9cb80add9" + "NORTHEUROPE:20190808T174534Z:e9bc12bb-3327-45fd-886c-a10a23642d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:45:33 GMT" + ], "Content-Length": [ "175" ], @@ -123,23 +123,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881\",\r\n \"name\": \"azsmnet8881\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440\",\r\n \"name\": \"azsmnet9440\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881/providers/Microsoft.Search/searchServices/azs-9742?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440/providers/Microsoft.Search/searchServices/azs-7261?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MjYxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f41a01b6-12e2-4224-b62f-c6d5650125fa" + "00df6a46-59c4-4706-ac89-5275e1e3e591" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:33 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2019-04-27T22%3A12%3A33.1445563Z'\"" + "W/\"datetime'2019-08-08T17%3A45%3A37.5662866Z'\"" ], "x-ms-request-id": [ - "f41a01b6-12e2-4224-b62f-c6d5650125fa" + "00df6a46-59c4-4706-ac89-5275e1e3e591" ], "request-id": [ - "f41a01b6-12e2-4224-b62f-c6d5650125fa" + "00df6a46-59c4-4706-ac89-5275e1e3e591" ], "elapsed-time": [ - "1116" + "1046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1136" + "1198" ], "x-ms-correlation-request-id": [ - "cffd8d71-254b-46be-a7bd-cb76fa29aebf" + "abbd2985-61ae-4f2b-afd2-35000502f8a0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221234Z:cffd8d71-254b-46be-a7bd-cb76fa29aebf" + "NORTHEUROPE:20190808T174538Z:abbd2985-61ae-4f2b-afd2-35000502f8a0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:45:37 GMT" + ], "Content-Length": [ "385" ], @@ -198,23 +198,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881/providers/Microsoft.Search/searchServices/azs-9742\",\r\n \"name\": \"azs-9742\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440/providers/Microsoft.Search/searchServices/azs-7261\",\r\n \"name\": \"azs-7261\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881/providers/Microsoft.Search/searchServices/azs-9742/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzQyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440/providers/Microsoft.Search/searchServices/azs-7261/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MjYxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "713bbd10-e535-437d-907e-a558d5b27d15" + "36a7ccea-a6b2-4a10-b594-05a476dffa84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -224,9 +224,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:38 GMT" - ], "Pragma": [ "no-cache" ], @@ -234,29 +231,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "713bbd10-e535-437d-907e-a558d5b27d15" + "36a7ccea-a6b2-4a10-b594-05a476dffa84" ], "request-id": [ - "713bbd10-e535-437d-907e-a558d5b27d15" + "36a7ccea-a6b2-4a10-b594-05a476dffa84" ], "elapsed-time": [ - "175" + "239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1136" + "1198" ], "x-ms-correlation-request-id": [ - "33d0e88e-f779-427b-8365-12c048868593" + "9763a072-85a9-4d8b-b121-0253f5d0d07c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221238Z:33d0e88e-f779-427b-8365-12c048868593" + "NORTHEUROPE:20190808T174539Z:9763a072-85a9-4d8b-b121-0253f5d0d07c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:45:39 GMT" + ], "Content-Length": [ "99" ], @@ -267,23 +267,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"6AAF95303133502BD48F60A8816DB54E\",\r\n \"secondaryKey\": \"4EB51A38F20F04B254344E2C1724645E\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"441F78C828DA11A752A98EA5BE03DA3E\",\r\n \"secondaryKey\": \"A83C15F1B70A2A629886C8F96B0224C6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881/providers/Microsoft.Search/searchServices/azs-9742/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzQyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440/providers/Microsoft.Search/searchServices/azs-7261/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MjYxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f498db3-c2bb-4cdd-8713-d2021984f214" + "e2823388-55ac-4181-92b6-7e53ea5f301e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -293,9 +293,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:38 GMT" - ], "Pragma": [ "no-cache" ], @@ -303,29 +300,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f498db3-c2bb-4cdd-8713-d2021984f214" + "e2823388-55ac-4181-92b6-7e53ea5f301e" ], "request-id": [ - "9f498db3-c2bb-4cdd-8713-d2021984f214" + "e2823388-55ac-4181-92b6-7e53ea5f301e" ], "elapsed-time": [ - "130" + "175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14999" ], "x-ms-correlation-request-id": [ - "7f8e03ec-365d-46f7-8c52-f0f57339a07e" + "7d745682-47e0-4a0c-9db9-0b0630b6468b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221238Z:7f8e03ec-365d-46f7-8c52-f0f57339a07e" + "NORTHEUROPE:20190808T174540Z:7d745682-47e0-4a0c-9db9-0b0630b6468b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 08 Aug 2019 17:45:39 GMT" + ], "Content-Length": [ "82" ], @@ -336,7 +336,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BF25135A144F94FC6A8E5CC884D4051C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"EDA90F255F1F82055195CC39981EA269\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { @@ -346,36 +346,33 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "01dd153c-10f4-40a6-bee1-e5dd88739d3a" + "fb859ffd-db66-4d34-8f7f-b0212b1125d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "api-key": [ - "6AAF95303133502BD48F60A8816DB54E" + "441F78C828DA11A752A98EA5BE03DA3E" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Search.SearchServiceClient/9.0.0.0" + "Microsoft.Azure.Search.SearchServiceClient/10.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:40 GMT" - ], "Pragma": [ "no-cache" ], "request-id": [ - "01dd153c-10f4-40a6-bee1-e5dd88739d3a" + "fb859ffd-db66-4d34-8f7f-b0212b1125d0" ], "elapsed-time": [ - "69" + "74" ], "OData-Version": [ "4.0" @@ -386,8 +383,8 @@ "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" ], - "Content-Length": [ - "119" + "Date": [ + "Thu, 08 Aug 2019 17:45:41 GMT" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -397,25 +394,28 @@ ], "Expires": [ "-1" + ], + "Content-Length": [ + "119" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'thisSkillsetdoesnotexist' was found in service 'azs-9742'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'thisSkillsetdoesnotexist' was found in service 'azs-7261'.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8881/providers/Microsoft.Search/searchServices/azs-9742?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9440/providers/Microsoft.Search/searchServices/azs-7261?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MjYxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c64df8-8082-404f-8084-1cfe9fae9fae" + "0dd1fe90-f6d4-44fd-a941-f71eb9add9da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27617.04", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Search.SearchManagementClient/3.0.0.0" @@ -425,41 +425,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 27 Apr 2019 22:12:43 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "09c64df8-8082-404f-8084-1cfe9fae9fae" + "0dd1fe90-f6d4-44fd-a941-f71eb9add9da" ], "request-id": [ - "09c64df8-8082-404f-8084-1cfe9fae9fae" + "0dd1fe90-f6d4-44fd-a941-f71eb9add9da" ], "elapsed-time": [ - "983" + "702" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14954" + "14998" ], "x-ms-correlation-request-id": [ - "45ad0f23-944d-4f1a-92b3-126f83676021" + "2e6bca60-731f-4df9-9ff4-655bbfe9a1b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190427T221244Z:45ad0f23-944d-4f1a-92b3-126f83676021" + "NORTHEUROPE:20190808T174544Z:2e6bca60-731f-4df9-9ff4-655bbfe9a1b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 08 Aug 2019 17:45:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -468,10 +468,10 @@ ], "Names": { "GenerateName": [ - "azsmnet8881" + "azsmnet9440" ], "GenerateServiceName": [ - "azs-9742" + "azs-7261" ] }, "Variables": { diff --git a/sdk/search/Microsoft.Azure.Search/tests/Tests/IndexerTests.cs b/sdk/search/Microsoft.Azure.Search/tests/Tests/IndexerTests.cs index d58994b2cc71..41cc3934fefd 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/Tests/IndexerTests.cs +++ b/sdk/search/Microsoft.Azure.Search/tests/Tests/IndexerTests.cs @@ -427,7 +427,9 @@ public void CanRoundtripIndexerWithFieldMappingFunctions() => new FieldMapping("feature_id", "c", FieldMappingFunction.ExtractTokenAtPosition(delimiter: " ", position: 0)), new FieldMapping("feature_id", "d", FieldMappingFunction.Base64Decode()), new FieldMapping("feature_id", "e", FieldMappingFunction.Base64Decode(useHttpServerUtilityUrlTokenDecode: false)), - new FieldMapping("feature_id", "f", FieldMappingFunction.JsonArrayToStringCollection()) + new FieldMapping("feature_id", "f", FieldMappingFunction.JsonArrayToStringCollection()), + new FieldMapping("feature_id", "g", FieldMappingFunction.UrlEncode()), + new FieldMapping("feature_id", "h", FieldMappingFunction.UrlDecode()), } }; @@ -435,7 +437,7 @@ public void CanRoundtripIndexerWithFieldMappingFunctions() => // We need to add desired fields to the index before those fields can be referenced by the field mappings Index index = searchClient.Indexes.Get(Data.TargetIndexName); - string[] fieldNames = new[] { "a", "b", "c", "d", "e", "f" }; + string[] fieldNames = new[] { "a", "b", "c", "d", "e", "f", "g", "h" }; index.Fields = index.Fields.Concat(fieldNames.Select(name => new Field(name, DataType.String))).ToList(); searchClient.Indexes.CreateOrUpdate(index); diff --git a/sdk/search/Microsoft.Azure.Search/tests/Tests/SkillsetsTests.cs b/sdk/search/Microsoft.Azure.Search/tests/Tests/SkillsetsTests.cs index 99bff7b12eeb..d5253a044a0c 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/Tests/SkillsetsTests.cs +++ b/sdk/search/Microsoft.Azure.Search/tests/Tests/SkillsetsTests.cs @@ -78,7 +78,7 @@ public void CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment() Run(() => { SearchServiceClient searchClient = Data.GetSearchServiceClient(); - CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.Pt, SentimentSkillLanguage.PtPt, TextExtractionAlgorithm.Printed)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.Pt, SentimentSkillLanguage.PtPT, TextExtractionAlgorithm.Printed)); CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.Fi, SentimentSkillLanguage.Fi, TextExtractionAlgorithm.Printed)); CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.En, SentimentSkillLanguage.En, TextExtractionAlgorithm.Handwritten)); }); @@ -135,6 +135,28 @@ public void CreateSkillsetReturnsCorrectDefinitionOcrShaper() }); } + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionShaperWithNestedInputs() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetWithNestedInputs()); + }); + } + + [Fact] + public void CreateSkillsetThrowsExceptionWithNonShaperSkillWithNestedInputs() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + Skillset skillset = CreateTestSkillsetWithNestedInputs(isShaper: false); + CloudException exception = Assert.Throws(() => searchClient.Skillsets.Create(skillset)); + Assert.Contains("Skill '#1' is not allowed to have recursively defined inputs", exception.Message); + }); + } + [Fact] public void CreateSkillsetReturnsCorrectDefinitionOcrSplitText() { @@ -148,6 +170,29 @@ public void CreateSkillsetReturnsCorrectDefinitionOcrSplitText() }); } + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionTextTranslation() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetTextTranslation(TextTranslationSkillLanguage.Es)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetTextTranslation(TextTranslationSkillLanguage.Es, defaultFromLanguageCode: TextTranslationSkillLanguage.En)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetTextTranslation(TextTranslationSkillLanguage.Es, suggestedFrom: TextTranslationSkillLanguage.En)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetTextTranslation(TextTranslationSkillLanguage.Es, TextTranslationSkillLanguage.En, TextTranslationSkillLanguage.En)); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionConditional() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetConditional()); + }); + } + [Fact] public void CreateOrUpdateCreatesWhenSkillsetDoesNotExist() { @@ -299,7 +344,7 @@ public static Skillset CreateTestSkillsetOcrEntity(TextExtractionAlgorithm? algo skills.Add(new OcrSkill(inputs, outputs, "Tested OCR skill", RootPathString) { TextExtractionAlgorithm = algorithm, - DefaultLanguageCode = "en" + DefaultLanguageCode = OcrSkillLanguage.En }); var inputs1 = new List() @@ -323,7 +368,7 @@ public static Skillset CreateTestSkillsetOcrEntity(TextExtractionAlgorithm? algo skills.Add(new EntityRecognitionSkill(inputs1, outputs1, "Tested Entity Recognition skill", RootPathString) { Categories = categories, - DefaultLanguageCode = "en", + DefaultLanguageCode = EntityRecognitionSkillLanguage.En, MinimumPrecision = 0.5 }); @@ -553,7 +598,7 @@ private static Skillset CreateTestOcrSkillset(int repeat, TextExtractionAlgorith { TextExtractionAlgorithm = algorithm, ShouldDetectOrientation = shouldDetectOrientation, - DefaultLanguageCode = "en" + DefaultLanguageCode = OcrSkillLanguage.En }); } @@ -703,7 +748,7 @@ private static Skillset CreateTestSkillsetImageAnalysisKeyPhrase() ImageDetail.Celebrities, ImageDetail.Landmarks }, - DefaultLanguageCode = "en" + DefaultLanguageCode = ImageAnalysisSkillLanguage.En }); var inputs1 = new List() @@ -726,7 +771,7 @@ private static Skillset CreateTestSkillsetImageAnalysisKeyPhrase() skills.Add(new KeyPhraseExtractionSkill(inputs1, outputs1, "Tested Key Phrase skill", RootPathString) { - DefaultLanguageCode = "en" + DefaultLanguageCode = KeyPhraseExtractionSkillLanguage.En }); return new Skillset("testskillset2", "Skillset for testing", skills); @@ -818,7 +863,7 @@ private static Skillset CreateTestSkillsetOcrShaper() skills.Add(new OcrSkill(inputs, outputs, "Tested OCR skill", RootPathString) { TextExtractionAlgorithm = TextExtractionAlgorithm.Printed, - DefaultLanguageCode = "en" + DefaultLanguageCode = OcrSkillLanguage.En }); var inputs1 = new List() @@ -862,7 +907,7 @@ private static Skillset CreateSkillsetWithCognitiveServicesKey() skills.Add(new OcrSkill(inputs, outputs, "Tested OCR skill", RootPathString) { TextExtractionAlgorithm = TextExtractionAlgorithm.Printed, - DefaultLanguageCode = "en" + DefaultLanguageCode = OcrSkillLanguage.En }); return new Skillset("testskillset", "Skillset for testing", skills, new DefaultCognitiveServices()); @@ -916,6 +961,129 @@ private static Skillset CreateTestSkillsetOcrSplitText(OcrSkillLanguage ocrLangu return new Skillset("testskillset", "Skillset for testing", skills); } + private static Skillset CreateTestSkillsetWithNestedInputs(bool isShaper = true) + { + var skills = new List(); + + var inputs = new List() + { + new InputFieldMappingEntry + { + Name = "doc", + SourceContext = "/document", + Inputs = new List + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/content" + }, + new InputFieldMappingEntry + { + Name = "images", + Source = "/document/normalized_images/*" + } + } + } + }; + + var outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "output", + TargetName = "myOutput" + } + }; + + if (isShaper) + { + skills.Add(new ShaperSkill(inputs, outputs, "Tested Shaper skill", RootPathString)); + } + else + { + // Used for testing skill that shouldn't allow nested inputs + skills.Add(new WebApiSkill(inputs, outputs, "Invalid skill with nested inputed", RootPathString)); + } + + return new Skillset("testskillset", "Skillset for testing", skills); + } + + + private static Skillset CreateTestSkillsetTextTranslation(TextTranslationSkillLanguage defaultToLanguageCode, TextTranslationSkillLanguage? defaultFromLanguageCode = null, TextTranslationSkillLanguage? suggestedFrom = null) + { + var skills = new List(); + + var inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/text" + } + }; + + var outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "translatedText", + TargetName = "translatedText" + }, + new OutputFieldMappingEntry + { + Name = "translatedFromLanguageCode", + TargetName = "translatedFromLanguageCode" + }, + new OutputFieldMappingEntry + { + Name = "translatedToLanguageCode", + TargetName = "translatedToLanguageCode" + } + }; + + skills.Add(new TextTranslationSkill(inputs, outputs, defaultToLanguageCode, defaultFromLanguageCode: defaultFromLanguageCode, suggestedFrom: suggestedFrom)); + + return new Skillset("testskillset", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetConditional() + { + var skills = new List(); + + var inputs = new List() + { + new InputFieldMappingEntry + { + Name = "condition", + Source = "= $(/document/language) == null" + }, + new InputFieldMappingEntry + { + Name = "whenTrue", + Source = "= 'es'" + }, + new InputFieldMappingEntry + { + Name = "whenFalse", + Source = "= $(/document/language)" + } + }; + + var outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "output", + TargetName = "myLanguageCode" + } + }; + + skills.Add(new ConditionalSkill(inputs, outputs, "Tested Conditional skill", RootPathString)); + + return new Skillset("testskillset3", "Skillset for testing", skills); + } + private static Skillset CreateTestSkillsetWebApiSkill(bool includeHeader = true) { var skills = new List(); diff --git a/sdk/search/Microsoft.Azure.Search/tests/Utilities/IndexerFixture.cs b/sdk/search/Microsoft.Azure.Search/tests/Utilities/IndexerFixture.cs index ff827cce25ca..9f5f2a772a2b 100644 --- a/sdk/search/Microsoft.Azure.Search/tests/Utilities/IndexerFixture.cs +++ b/sdk/search/Microsoft.Azure.Search/tests/Utilities/IndexerFixture.cs @@ -72,9 +72,9 @@ public Indexer CreateTestIndexer() => { // Try all the field mapping functions (even if they don't make sense in the context of the test DB). new FieldMapping("feature_class", FieldMappingFunction.Base64Encode()), - new FieldMapping("state_alpha", "state"), + new FieldMapping("state_alpha", "state", FieldMappingFunction.UrlEncode()), new FieldMapping("county_name", FieldMappingFunction.ExtractTokenAtPosition(" ", 0)), - new FieldMapping("elev_in_m", "elevation"), + new FieldMapping("elev_in_m", "elevation", FieldMappingFunction.UrlDecode()), new FieldMapping("map_name", FieldMappingFunction.Base64Decode()), new FieldMapping("history", FieldMappingFunction.JsonArrayToStringCollection()) } diff --git a/sdk/servicebus/Microsoft.Azure.ServiceBus/changelog.md b/sdk/servicebus/Microsoft.Azure.ServiceBus/changelog.md new file mode 100644 index 000000000000..123e04989a7f --- /dev/null +++ b/sdk/servicebus/Microsoft.Azure.ServiceBus/changelog.md @@ -0,0 +1,25 @@ +# 4.0.0 +## Breaking Changes +- Allow clients to report if they own or share the underlying connection string [PR 6037](https://github.com/Azure/azure-sdk-for-net/pull/6037) +- RBAC support - Allow more flexible ways to provide authentication [PR 6393](https://github.com/Azure/azure-sdk-for-net/pull/6393) +- Updating RBAC API signatures [PR 6578](https://github.com/Azure/azure-sdk-for-net/pull/6578) +- RBAC and ManagedIdentity fixes [PR 6637](https://github.com/Azure/azure-sdk-for-net/pull/6637) + +## Improvements +- Remove explicit offloading in TaskExtensionHelper [PR 6545](https://github.com/Azure/azure-sdk-for-net/pull/6545) +- Make ConcurrentExpiringSet not leak the cleanup task for the period of delayBetweenCleanups - lock free [PR 6577](https://github.com/Azure/azure-sdk-for-net/pull/6577) +- Unblock message pump while receiving message to improve performance [PR 6804](https://github.com/Azure/azure-sdk-for-net/pull/6804) +- Message sender now exposes `viaEntityPath` that points to the via-entity. [PR 6941](https://github.com/Azure/azure-sdk-for-net/pull/6941) +- Throwing `ServiceBusCommunicationException` when it is connectionError instead of `ServiceBusException` [PR 6942](https://github.com/Azure/azure-sdk-for-net/pull/6942) +- Updating xmldoc - remarks on MessageHandlerOptions.MaxAutoRenewDuration [PR 6951](https://github.com/Azure/azure-sdk-for-net/pull/6951) + +## Bug fixes +- Fixes session pump stop when auto-renew lock task expires [PR 6483](https://github.com/Azure/azure-sdk-for-net/pull/6483) +- Fix session pump stops on some exceptions [PR 6485](https://github.com/Azure/azure-sdk-for-net/pull/6485) +- Prevent pump from stop processing by ignoring ObjectDisposedException [PR 6510](https://github.com/Azure/azure-sdk-for-net/pull/6510) +- Ensure that when AcceptMessageSession times out, it doesnt report it as Exception in AppInsights (DiagnosticSource) [PR 6919](https://github.com/Azure/azure-sdk-for-net/pull/6919) +- Ensure client side timeouts are honored [PR 6920](https://github.com/Azure/azure-sdk-for-net/pull/6920) +- Throw ServiceBusCommunicationException when session is being created at the same time when connection is being closed. [PR 6940](https://github.com/Azure/azure-sdk-for-net/pull/6940) +- Ensure if link has been authorized for a time less than TokenRefreshBuffer, it doesn't lead to unexpected errors. [PR 7053](https://github.com/Azure/azure-sdk-for-net/pull/7053) + +## For older releases, please check https://github.com/Azure/azure-service-bus-dotnet/releases diff --git a/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Microsoft.Azure.ServiceBus.csproj b/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Microsoft.Azure.ServiceBus.csproj index 900905d3aa16..74281e3d57bb 100644 --- a/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Microsoft.Azure.ServiceBus.csproj +++ b/sdk/servicebus/Microsoft.Azure.ServiceBus/src/Microsoft.Azure.ServiceBus.csproj @@ -2,7 +2,7 @@ Azure ServiceBus SDK This is the next generation Azure Service Bus .NET Standard client library that focuses on queues & topics. For more information about Service Bus, see https://azure.microsoft.com/en-us/services/service-bus/ - 3.4.0 + 4.0.0 Microsoft;Azure;Service Bus;ServiceBus;.NET;AMQP;IoT;Queue;Topic Microsoft.Azure.Management.Subscription Provides subscription management capabilities for Microsoft Azure. Microsoft.Azure.Management.Subscription - 1.1.1-preview + 1.1.2-preview Microsoft Azure Subscription;subscription definitions; - Taking dependency on 10.0.3 version of Newtonsoft nuget package. + Adding Cancel and Rename API support $(SdkTargetFx)